SubscriptionActivatedEmail
EmailPlan aktivasyon onayı. Özellik listesi, fiyat ve bir sonraki faturalandırma tarihi.
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// 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',
},
});
<%
var plan = locals.plan || {};
var features = plan.features || [];
function fmtTRY(n) { return '₺' + (n || 0).toFixed(2); }
%>
<%- include('../_preview-bar', locals) %>
You're on <%= plan.name %>!
Your subscription is now active
Hi <%= toName %>, welcome to <%= plan.name %>! Your subscription is active and ready to use. Here's everything included in your plan:
<%= plan.name %>
<%= fmtTRY(plan.price) %> / <%= plan.interval %>
Next billing date: <%= plan.nextBillingDate %>
What's included:
<% features.forEach(function(f) { %>
<%= f %>
<% }); %>
<%- include('../_footer', locals) %>