AccountLockedEmail
EmailÇok fazla başarısız giriş sonrası kilit e-postası. Kilit açma süresi, sebep ve "Unlock" / "Support" butonları.
Account temporarily locked
Your account has been locked to protect your security.
ReasonToo many failed attempts
Unlocks atMay 3, 2026 11:23 AM
Unlock Account
Support
© 2026 Acme Corp
Live preview// GET /theme/common/email/auth/account-locked
res.render('theme/common/email/auth/account-locked', {
layout: 'layouts/blank',
subject: 'Your account has been temporarily locked',
fromName: 'Acme Corp',
fromEmail: 'noreply@acme.example.com',
toName: user.name,
toEmail: user.email,
company: { name: 'Acme Corp', address: '...' },
reason: 'Too many failed login attempts',
unlockAt: lockExpiry.toLocaleString(),
unlockUrl: '/auth/unlock?token=' + token,
supportUrl: '/support',
});
<%- include('../_preview-bar', locals) %>
<%= company.name %>
Account temporarily locked
Hi <%= toName %>, your account has been temporarily locked to protect your security.
Reason
<%= reason %>
Unlocks at
<%= unlockAt %>
Your account will unlock automatically. Alternatively, you can verify your identity to unlock it now.
If this wasn't you, your account may be targeted. We recommend using a strong, unique password.
<%- include('../_footer', locals) %>