diff options
Diffstat (limited to 'app/views/comment_mailer/new_comment_email.text.erb')
-rw-r--r-- | app/views/comment_mailer/new_comment_email.text.erb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/views/comment_mailer/new_comment_email.text.erb b/app/views/comment_mailer/new_comment_email.text.erb new file mode 100644 index 0000000..e37046f --- /dev/null +++ b/app/views/comment_mailer/new_comment_email.text.erb | |||
@@ -0,0 +1,20 @@ | |||
1 | Four Island | ||
2 | =========== | ||
3 | |||
4 | A comment has been posted on <%= @comment.blog.title %> by the following user: | ||
5 | |||
6 | * Name: <%= @comment.username %> | ||
7 | * Email: <%= @comment.email %> | ||
8 | <% unless @comment.website.empty? %>* Website: <%= @comment.website %> | ||
9 | <% end %> | ||
10 | Here is the comment: | ||
11 | |||
12 | --- | ||
13 | |||
14 | <%= @comment.body %> | ||
15 | |||
16 | --- | ||
17 | |||
18 | Posted: <%= @comment.published_at.strftime("%B #{@comment.published_at.day.ordinalize}, %Y at %-I:%M:%S%P") %> | ||
19 | |||
20 | See the comment on the web: <%= blog_url(@comment.blog, anchor: "comment-#{@comment.id}") %> | ||