MaintenanceEmail

Email

Planlı bakım öncesi uyarı. Zaman penceresi, etkilenen servisler ve status page linki.

Scheduled Maintenance

Preview

Scheduled Maintenance

Advance notice — no action required

StartMay 10 at 2:00 AM UTC
EndMay 10 at 6:00 AM UTC
Duration~4 hours

Affected services:

Web application
API access
File uploads

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/system/maintenance
res.render('theme/common/email/system/maintenance', {
  layout:    'layouts/blank',
  subject:   'Scheduled maintenance on ' + maintenance.date,
  fromName:  'Acme Corp',
  fromEmail: 'status@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  maintenance: {
    startTime: maintenance.startAt.toUTCString(),
    endTime:   maintenance.endAt.toUTCString(),
    duration:  maintenance.durationLabel,
    reason:    maintenance.reason,
    affected:  maintenance.affectedServices,
    statusUrl: 'https://status.acme.example.com',
  },
});
Source views/theme/common/email/system/maintenance.ejs