WelcomeEmail

Email

Kayıt sonrası gönderilen hoş geldin e-postası. E-posta doğrulama CTA ve "next steps" listesi içerir.

Welcome Email

Preview

Welcome, John Doe! 🎉

Thanks for creating an account. Confirm your email to get started.

Confirm Email Address

Link expires in 24 hours.

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/auth/welcome
res.render('theme/common/email/auth/welcome', {
  layout:    'layouts/blank',
  subject:   'Welcome to Acme Corp! Confirm your email to get started',
  fromName:  'Acme Corp',
  fromEmail: 'noreply@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  date:      new Date().toLocaleString(),
  company:   { name: 'Acme Corp', address: '123 Main St · San Francisco, CA' },
  confirmUrl: generateConfirmUrl(user.id),
});
Source views/theme/common/email/auth/welcome.ejs