LoginAlertEmail
EmailYeni cihazdan giriş uyarısı. Cihaz, konum ve IP bilgisi; "Secure My Account" ve "This Was Me" CTA çifti.
New sign-in detected
A new sign-in to your account was detected.
DeviceChrome on Windows 11
LocationIstanbul, Turkey
TimeMay 3, 2026 10:23 AM
Secure Account
This Was Me
© 2026 Acme Corp
Live preview// GET /theme/common/email/auth/login-alert
res.render('theme/common/email/auth/login-alert', {
layout: 'layouts/blank',
subject: 'New sign-in to your Acme Corp account',
fromName: 'Acme Corp',
fromEmail: 'noreply@acme.example.com',
toName: user.name,
toEmail: user.email,
company: { name: 'Acme Corp', address: '...' },
device: parseUserAgent(req.headers['user-agent']),
location: resolveLocation(req.ip),
ipAddress: req.ip,
loginTime: new Date().toLocaleString(),
secureUrl: '/account/security',
});
<%- include('../_preview-bar', locals) %>
<%= company.name %>
New sign-in detected
Hi <%= toName %>, we noticed a new sign-in to your account. If this was you, no action is needed.
Device
<%= device %>
Location
<%= location %>
IP address
<%= ipAddress %>
Time
<%= loginTime %>
If you don't recognize this activity, change your password and enable two-factor authentication immediately.
<%- include('../_footer', locals) %>