SubscriptionCancelledEmail

Email

Abonelik iptali. Erişim sona erme tarihi, yeniden aktivasyon CTA ve geri bildirim linki.

Subscription Cancelled

Preview

Subscription Cancelled

Pro Plan

Access until May 10, 2026, then reverts to Free.
Cancelled onMay 3, 2026

Changed your mind?

Reactivate Subscription

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/billing/subscription-cancelled
res.render('theme/common/email/billing/subscription-cancelled', {
  layout:    'layouts/blank',
  subject:   'Your ' + plan.name + ' subscription has been cancelled',
  fromName:  'Acme Corp',
  fromEmail: 'noreply@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  plan: {
    name:          subscription.planName,
    cancelledAt:   new Date().toLocaleDateString(),
    accessUntil:   subscription.currentPeriodEnd.toLocaleDateString(),
    reactivateUrl: '/account/subscription/reactivate',
    feedbackUrl:   '/feedback/cancellation',
  },
});
Source views/theme/common/email/billing/subscription-cancelled.ejs