PromotionalEmail

Email

Süre sınırlı kampanya. Gradient başlık, fiyat karşılaştırma, kesik çizgili kupon kodu.

Promotional Offer

Preview
Limited Time

50% OFF

This weekend only — upgrade and save

Regular

₺999.90

Your price

₺499.95

WEEKEND50

Valid until May 5, 2026 at 11:59 PM

Claim My Discount

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/marketing/promotional
res.render('theme/common/email/marketing/promotional', {
  layout:    'layouts/blank',
  subject:   promo.discountPct + '% off ' + plan.name + ' — This weekend only',
  fromName:  'Acme Corp',
  fromEmail: 'deals@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  promo: {
    headline:         promo.headline,
    subheadline:      promo.subheadline,
    discountPct:      promo.discountPercent,
    code:             promo.couponCode,
    validUntil:       promo.expiresAt.toLocaleString(),
    originalPrice:    plan.price,
    discountedPrice:  plan.price * (1 - promo.discountPercent / 100),
    currency:         plan.currency,
    shopUrl:          '/pricing',
    features:         plan.features,
  },
});
Source views/theme/common/email/marketing/promotional.ejs