PromotionalEmail
EmailSüre sınırlı kampanya. Gradient başlık, fiyat karşılaştırma, kesik çizgili kupon kodu.
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
© 2026 Acme Corp
Live preview// 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,
},
});
<%
var promo = locals.promo || {};
var features = promo.features || [];
function fmtTRY(n) { return '₺' + (n || 0).toFixed(2); }
%>
<%- include('../_preview-bar', locals) %>
Limited Time Offer
<%= promo.discountPct %>% OFF
<%= promo.subheadline %>
Hi <%= toName %>, for this weekend only, we're offering a massive <%= promo.discountPct %>% discount on our <%= promo.headline.replace(promo.discountPct + '% Off ', '') %>. Don't miss out!
Regular price
<%= fmtTRY(promo.originalPrice) %>
→
Your price
<%= fmtTRY(promo.discountedPrice) %>
Use code at checkout:
<%= promo.code %>
Valid until <%= promo.validUntil %>
What you'll get:
<% features.forEach(function(f) { %>
<%= f %>
<% }); %>
Offer expires <%= promo.validUntil %>. Cannot be combined with other promotions.
<%- include('../_footer', locals) %>