22 lines
816 B
Text
22 lines
816 B
Text
<% content_for :message do %>
|
|
|
|
<%# i18n-tasks-use t("comment_mailer.comment_reply_notification.chapter.titled") %>
|
|
<%# i18n-tasks-use t("comment_mailer.comment_reply_notification.chapter.untitled") %>
|
|
<%# i18n-tasks-use t("comment_mailer.comment_reply_notification.content.chapter.html") %>
|
|
<%# i18n-tasks-use t("comment_mailer.comment_reply_notification.content.other.html") %>
|
|
<%# i18n-tasks-use t("comment_mailer.comment_reply_notification.content.tag.html") %>
|
|
<%= content_for_commentable_html(@comment) %>
|
|
|
|
<p>
|
|
You wrote:
|
|
<%= style_quote(raw(@your_comment.sanitized_mailer_content)) %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= commenter_pseud_or_name_link(@comment) %> responded:
|
|
<%= style_quote(raw(@comment.sanitized_mailer_content)) %>
|
|
</p>
|
|
|
|
<%= render 'comment_notification_footer' %>
|
|
|
|
<% end %>
|