AccountLockedEmail

Email

Çok fazla başarısız giriş sonrası kilit e-postası. Kilit açma süresi, sebep ve "Unlock" / "Support" butonları.

Account Locked

Preview

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
Code
// 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',
});
Source views/theme/common/email/auth/account-locked.ejs