VerifyEmailOTP
Email6-digit OTP code. Large mono-font code display and expiry notice.
Verify your email
Enter this code in the verification screen. Expires in 15 minutes.
Didn't request this? You can safely ignore this email.
© 2026 Acme Corp
Live preview// GET /theme/common/email/auth/verify-email
res.render('theme/common/email/auth/verify-email', {
layout: 'layouts/blank',
subject: 'Your Acme Corp verification code',
fromName: 'Acme Corp',
fromEmail: 'noreply@acme.example.com',
toName: user.name,
toEmail: user.email,
company: { name: 'Acme Corp', address: '...' },
otp: generateOTP(), // e.g. '847 392'
expiresIn: '15 minutes',
});
<%- include('../_preview-bar', locals) %>
A
<%= company.name %>
Verify your email
Enter the code below in the verification screen. It expires in <%= expiresIn %>.
If you didn't request this code, you can safely ignore this email.
Someone may have entered your email address by mistake.
Having trouble? Contact support
<%- include('../_footer', locals) %>