MaintenanceEmail
EmailPlanlı bakım öncesi uyarı. Zaman penceresi, etkilenen servisler ve status page linki.
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// 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',
},
});
<%
var m = locals.maintenance || {};
var affected = m.affected || [];
%>
<%- include('../_preview-bar', locals) %>
Scheduled Maintenance
Advance notice — no action required
Planned downtime on May 10
Hi <%= toName %>, we're performing scheduled maintenance to upgrade our infrastructure. The platform will be temporarily unavailable during this window.
Start
<%= m.startTime %>
End
<%= m.endTime %>
Duration
<%= m.duration %>
Reason
<%= m.reason %>
Affected services:
<% affected.forEach(function(svc) { %>
<%= svc %>
<% }); %>
Follow real-time updates on our status page. We'll post a completion notice as soon as maintenance is done.
<%- include('../_footer', locals) %>