DataExportEmail
EmailVeri dışa aktarma hazır bildirimi. Dosya boyutu, format, son kullanma tarihi ve indirme CTA.
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// 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(),
},
});
<%
var exp = locals.export || {};
%>
<%- include('../_preview-bar', locals) %>
Your export is ready!
Data export ready to download
Hi <%= toName %>, your data export has been prepared and is ready to download. The file will be available until <%= exp.expiresAt %>.
Requested
<%= exp.requestedAt %>
Ready at
<%= exp.readyAt %>
File size
<%= exp.fileSize %>
Format
<%= exp.format %>
Link expires
<%= exp.expiresAt %>
Keep this file secure — it contains your personal data and account information.
<%- include('../_footer', locals) %>