DataExportEmail

Email

Veri dışa aktarma hazır bildirimi. Dosya boyutu, format, son kullanma tarihi ve indirme CTA.

Data Export Ready

Preview

Your export is ready!

File size2.4 MB
FormatZIP (JSON + CSV)
RequestedMay 3, 2026 9:00 AM
Link expiresMay 10, 2026
Download Your Data

Keep this file secure — it contains your personal data.

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/system/data-export
res.render('theme/common/email/system/data-export', {
  layout:    'layouts/blank',
  subject:   'Your data export is ready to download',
  fromName:  'Acme Corp',
  fromEmail: 'noreply@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  export: {
    requestedAt: exportJob.requestedAt.toLocaleString(),
    readyAt:     exportJob.completedAt.toLocaleString(),
    fileSize:    formatBytes(exportJob.fileSizeBytes),
    format:      'ZIP (JSON + CSV)',
    downloadUrl: exportJob.signedDownloadUrl,   // time-limited signed URL
    expiresAt:   exportJob.expiresAt.toLocaleDateString(),
  },
});
Source views/theme/common/email/system/data-export.ejs