20 lines
821 B
Text
20 lines
821 B
Text
<% content_for :message do %>
|
|
<%# i18n-tasks-use t("comment_mailer.edited_comment_reply_notification.content.chapter.titled_text") %>
|
|
<%# i18n-tasks-use t("comment_mailer.edited_comment_reply_notification.content.chapter.untitled_text") %>
|
|
<%# i18n-tasks-use t("comment_mailer.edited_comment_reply_notification.content.other.text") %>
|
|
<%# i18n-tasks-use t("comment_mailer.edited_comment_reply_notification.content.tag.text") %>
|
|
<%= content_for_commentable_text(@comment) %>
|
|
|
|
You wrote:
|
|
<%= text_divider %>
|
|
|
|
<%= to_plain_text(raw(@your_comment.sanitized_mailer_content)) %>
|
|
|
|
<%= text_divider %>
|
|
|
|
<%= commenter_pseud_or_name_text(@comment) %> edited their response to:
|
|
<%= text_divider %>
|
|
|
|
<%= to_plain_text(raw(@comment.sanitized_mailer_content)) %>
|
|
|
|
<%= render 'comment_notification_footer', formats: [:text] %><% end %>
|