about summary refs log tree commit diff stats
path: root/app/views/comment_mailer
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-10-14 11:12:05 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-10-14 11:12:05 -0400
commitfce622b5b1959892b6f6ea94bfe3a1c4eb52d8dd (patch)
tree27d42a442c000781d100dfa7fd8b976aefb03c31 /app/views/comment_mailer
parent0aace2986a9a7a6d4c84a9ba6819d3df7821e267 (diff)
downloadthoughts-fce622b5b1959892b6f6ea94bfe3a1c4eb52d8dd.tar.gz
thoughts-fce622b5b1959892b6f6ea94bfe3a1c4eb52d8dd.tar.bz2
thoughts-fce622b5b1959892b6f6ea94bfe3a1c4eb52d8dd.zip
Added comment replying
Diffstat (limited to 'app/views/comment_mailer')
-rw-r--r--app/views/comment_mailer/reply_comment_email.html.haml14
-rw-r--r--app/views/comment_mailer/reply_comment_email.text.erb19
2 files changed, 33 insertions, 0 deletions
diff --git a/app/views/comment_mailer/reply_comment_email.html.haml b/app/views/comment_mailer/reply_comment_email.html.haml new file mode 100644 index 0000000..22009ee --- /dev/null +++ b/app/views/comment_mailer/reply_comment_email.html.haml
@@ -0,0 +1,14 @@
1%p
2 A reply has been posted to your comment on
3 = succeed "." do
4 = link_to @comment.blog.title, @comment.blog
5 The original comment:
6%blockquote= @comment.reply_to.body
7%p
8 = @comment.username
9 left the following response:
10%blockquote= @comment.body
11%p
12 Posted:
13 = @comment.published_at.strftime("%B #{@comment.published_at.day.ordinalize}, %Y at %-I:%M:%S%P")
14%p= link_to "See the comment on the web", blog_url(@comment.blog, anchor: "comment-#{@comment.id}")
diff --git a/app/views/comment_mailer/reply_comment_email.text.erb b/app/views/comment_mailer/reply_comment_email.text.erb new file mode 100644 index 0000000..bd60692 --- /dev/null +++ b/app/views/comment_mailer/reply_comment_email.text.erb
@@ -0,0 +1,19 @@
1A reply has been posted to your comment on <%= @comment.blog.title %>. The original comment:
2
3---
4
5<%= @comment.reply_to.body %>
6
7---
8
9<%= @comment.username %> posted the following response:
10
11---
12
13<%= @comment.body %>
14
15---
16
17Posted: <%= @comment.published_at.strftime("%B #{@comment.published_at.day.ordinalize}, %Y at %-I:%M:%S%P") %>
18
19See the comment on the web: <%= blog_url(@comment.blog, anchor: "comment-#{@comment.id}") %>