PasswordChangedEmail
EmailŞifre değişikliği onay e-postası. Cihaz, IP ve konum bilgisi ile "Benim değildi" uyarısı.
Acme Corp
Password updated successfully
Changed atMay 3, 2026 10:23 AM
LocationIstanbul, Turkey
IP address192.168.1.42
Wasn't you? Contact support immediately.
© 2026 Acme Corp
Live preview// GET /theme/common/email/auth/password-changed
res.render('theme/common/email/auth/password-changed', {
layout: 'layouts/blank',
subject: 'Your password has been changed',
fromName: 'Acme Corp',
fromEmail: 'noreply@acme.example.com',
toName: user.name,
toEmail: user.email,
company: { name: 'Acme Corp', address: '...' },
changedAt: new Date().toLocaleString(),
ipAddress: req.ip,
location: resolveLocation(req.ip),
supportUrl: '/support',
});
<%- include('../_preview-bar', locals) %>
A
<%= company.name %>
Password updated successfully
Your account password has been changed.
Hi <%= toName %>,
This is a confirmation that the password for your account <%= toEmail %> was changed.
Changed at
<%= changedAt %>
IP address
<%= ipAddress %>
Location
<%= location %>
Wasn't you?
If you didn't make this change, your account may be compromised.
Contact support immediately.
<%- include('../_footer', locals) %>