From a2b7cf6ddaf359c5409cc04fa64d413287ee4692 Mon Sep 17 00:00:00 2001 From: Maximilian Grundke Date: Wed, 13 Sep 2017 08:28:38 +0200 Subject: [PATCH] Add user mailer template --- app/views/user_mailer/got_new_comment_for_subscription.html.slim | 1 + 1 file changed, 1 insertion(+) create mode 100644 app/views/user_mailer/got_new_comment_for_subscription.html.slim diff --git a/app/views/user_mailer/got_new_comment_for_subscription.html.slim b/app/views/user_mailer/got_new_comment_for_subscription.html.slim new file mode 100644 index 00000000..f4d82b4d --- /dev/null +++ b/app/views/user_mailer/got_new_comment_for_subscription.html.slim @@ -0,0 +1 @@ +== t('mailers.user_mailer.got_new_comment_for_subscription.body', receiver_displayname: @receiver_displayname, link_to_comment: link_to(@rfc_link, @rfc_link), author_displayname: @author_displayname, comment_text: @comment_text, link_my_comments: link_to(t('request_for_comments.index.get_my_comment_requests'), my_request_for_comments_url), link_all_comments: link_to(t('request_for_comments.index.all'), request_for_comments_url) )