CommentReplyEmail

Email

Yorum cevabı bildirimi. Orijinal yorum + yeni cevap thread görünümü.

Comment Reply

Preview

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
Code
// 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,
  },
});
Source views/theme/common/email/notification/comment-reply.ejs