PolicyUpdateEmail

Email

Privacy policy / terms of service update. Point-by-point summary and effective date.

Privacy Policy Update

Preview

Acme Corp

Updates to our Privacy Policy take effect June 1, 2026.

More granular data sharing preferences.

Clarified third-party analytics handling.

Added right to data portability.

Updated retention periods.

Read the Full Policy

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/system/policy-update
res.render('theme/common/email/system/policy-update', {
  layout:    'layouts/blank',
  subject:   'Important updates to our ' + update.type,
  fromName:  'Acme Corp',
  fromEmail: 'legal@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  update: {
    type:          'Privacy Policy',   // or 'Terms of Service'
    effectiveDate: policy.effectiveDate.toLocaleDateString(),
    summaryPoints: policy.changes.map(c => c.summary),
    viewUrl:       '/legal/privacy',
  },
});
Source views/theme/common/email/system/policy-update.ejs