CommentReplyEmail
EmailYorum cevabı bildirimi. Orijinal yorum + yeni cevap thread görünümü.
Acme Corp
S
Sarah Chen replied to your comment
Great article! The atomic design section was helpful…
Thanks John! The atomic approach really does scale well.
View Discussion
© 2026 Acme Corp
Live preview// GET /theme/common/email/notification/comment-reply
res.render('theme/common/email/notification/comment-reply', {
layout: 'layouts/blank',
subject: reply.authorName + ' replied to your comment',
fromName: 'Acme Corp',
fromEmail: 'noreply@acme.example.com',
toName: originalComment.authorName,
toEmail: originalComment.authorEmail,
company: { name: 'Acme Corp', address: '...' },
notification: {
senderName: reply.authorName,
postTitle: post.title,
postUrl: '/posts/' + post.slug,
yourComment: originalComment.body,
replyText: reply.body,
viewUrl: '/posts/' + post.slug + '#comment-' + reply.id,
},
});
<%
var n = locals.notification || {};
%>
<%- include('../_preview-bar', locals) %>
A
<%= company.name %>
<%= n.senderName ? n.senderName[0] : 'S' %>
<%= n.senderName %> replied to your comment
on "<%= n.postTitle %>"
Your comment
<%= n.yourComment %>
<%= n.senderName %> replied
<%= n.replyText %>
<%- include('../_footer', locals) %>