ProductUpdateEmail
EmailÜrün sürüm duyurusu. Versiyon badge, öne çıkan değişiklik kartları ve changelog linki.
Acme Corp
Product Update
We shipped something big 🚀
3× Faster Performance
New Design System
New Integrations
What's New
Changelog
© 2026 Acme Corp
Live preview// GET /theme/common/email/marketing/product-update
res.render('theme/common/email/marketing/product-update', {
layout: 'layouts/blank',
subject: "What's new in Acme Corp v" + release.version,
fromName: 'Acme Corp',
fromEmail: 'updates@acme.example.com',
toName: user.name,
toEmail: user.email,
company: { name: 'Acme Corp', address: '...' },
update: {
version: release.version,
date: release.releasedAt.toLocaleDateString(),
intro: release.intro,
highlights: release.highlights.map(h => ({
icon: h.icon,
title: h.title,
description: h.summary,
})),
changelogUrl: '/changelog',
learnMoreUrl: '/blog/v' + release.version,
},
});
<%
var upd = locals.update || {};
var highlights = upd.highlights || [];
%>
<%- include('../_preview-bar', locals) %>
<%= company.name %>
Product Update
v<%= upd.version %>
<%= upd.headline %>
<%= upd.intro %>
What's new in v<%= upd.version %>:
<% highlights.forEach(function(h) { %>
<%= h.title %>
<%= h.description %>
<% }); %>
<%- include('../_footer', locals) %>