MentionEmail
Email@mention bildirimi. Bahseden kişi, bağlam ve alıntı excerpt gösterimi.
Acme Corp
A
Alex Rivera mentioned you in a comment
Excerpt
…I think @johndoe had a great solution to this problem…
See the Mention
© 2026 Acme Corp
Live preview// GET /theme/common/email/notification/mention
res.render('theme/common/email/notification/mention', {
layout: 'layouts/blank',
subject: mention.authorName + ' mentioned you in a comment',
fromName: 'Acme Corp',
fromEmail: 'noreply@acme.example.com',
toName: mentionedUser.name,
toEmail: mentionedUser.email,
company: { name: 'Acme Corp', address: '...' },
notification: {
mentionerName: mention.authorName,
context: 'mentioned you in a comment on "' + post.title + '"',
excerpt: buildExcerptAround(mention, comment.body),
viewUrl: '/posts/' + post.slug + '#comment-' + comment.id,
},
});
<%
var n = locals.notification || {};
%>
<%- include('../_preview-bar', locals) %>
A
<%= company.name %>
<%= n.mentionerName ? n.mentionerName[0] : 'A' %>
<%= n.mentionerName %> <%= n.context %>
Excerpt
<%= n.excerpt %>
You received this because you have mention notifications enabled.
Update preferences
<%- include('../_footer', locals) %>