RenewalReminderEmail
Email7 gün önceden yenileme hatırlatıcısı. Ödeme yöntemi, tutar ve manage/cancel linkleri.
Acme Corp
Your subscription renews in 7 days
PlanPro Plan
Renewal dateMay 10, 2026
Amount₺999.90
Payment methodVisa ••••4242
Manage
Cancel
© 2026 Acme Corp
Live preview// GET /theme/common/email/billing/renewal-reminder
res.render('theme/common/email/billing/renewal-reminder', {
layout: 'layouts/blank',
subject: 'Your ' + plan.name + ' renews in 7 days',
fromName: 'Acme Corp',
fromEmail: 'noreply@acme.example.com',
toName: user.name,
toEmail: user.email,
company: { name: 'Acme Corp', address: '...' },
plan: {
name: subscription.planName,
renewalDate: subscription.nextBillingDate.toLocaleDateString(),
amount: subscription.amount,
currency: subscription.currency,
paymentMethod: paymentMethod.display,
manageUrl: '/account/subscription',
cancelUrl: '/account/subscription/cancel',
},
});
<%
var plan = locals.plan || {};
function fmtTRY(n) { return '₺' + (n || 0).toFixed(2); }
%>
<%- include('../_preview-bar', locals) %>
A
<%= company.name %>
Your subscription renews in 7 days
Renewal Reminder
Hi <%= toName %>, this is a friendly reminder that your <%= plan.name %> subscription is scheduled to renew automatically.
Plan
<%= plan.name %>
Renewal date
<%= plan.renewalDate %>
Amount
<%= fmtTRY(plan.amount) %>
Payment method
<%= plan.paymentMethod %>
<%- include('../_footer', locals) %>