AccountDeletionEmail

Email

Hesap silme zamanlama bildirimi. Grace period, kalıcı silme uyarısı ve iptal CTA.

Account Deletion Scheduled

Preview

Account Deletion Scheduled

RequestedMay 3, 2026 10:00 AM
Scheduled forMay 10, 2026
Grace period7 days to cancel

This action is permanent

All data will be deleted on May 10, 2026. This cannot be undone.

Cancel Deletion

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/system/account-deletion
res.render('theme/common/email/system/account-deletion', {
  layout:    'layouts/blank',
  subject:   'Your account is scheduled for deletion on ' + deletionDate,
  fromName:  'Acme Corp',
  fromEmail: 'noreply@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  deletion: {
    requestedAt:      new Date().toLocaleString(),
    scheduledAt:      deletionDate.toLocaleDateString(),
    gracePeriodDays:  7,
    cancelUrl:        '/account/cancel-deletion?token=' + token,
    supportUrl:       '/support',
  },
});
Source views/theme/common/email/system/account-deletion.ejs