SubscriptionActivatedEmail

Email

Plan aktivasyon onayı. Özellik listesi, fiyat ve bir sonraki faturalandırma tarihi.

Subscription Activated

Preview

You're on Pro Plan!

Subscription active

Pro Plan ₺999.90 / year
Next billingMay 3, 2027
Unlimited projects
Priority support
Advanced analytics
Manage Subscription

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/billing/subscription-activated
res.render('theme/common/email/billing/subscription-activated', {
  layout:    'layouts/blank',
  subject:   'Your ' + plan.name + ' subscription is now active!',
  fromName:  'Acme Corp',
  fromEmail: 'noreply@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  plan: {
    name:            plan.name,
    price:           plan.price,
    currency:        plan.currency,
    interval:        plan.billingInterval,  // 'month' | 'year'
    nextBillingDate: subscription.nextBillingDate.toLocaleDateString(),
    features:        plan.features,
    manageUrl:       '/account/subscription',
  },
});
Source views/theme/common/email/billing/subscription-activated.ejs