diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/vote_mailer/daily_report_email.html.haml | 8 | ||||
-rw-r--r-- | app/views/vote_mailer/daily_report_email.text.erb | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/app/views/vote_mailer/daily_report_email.html.haml b/app/views/vote_mailer/daily_report_email.html.haml new file mode 100644 index 0000000..ab54df2 --- /dev/null +++ b/app/views/vote_mailer/daily_report_email.html.haml | |||
@@ -0,0 +1,8 @@ | |||
1 | %p | ||
2 | Users have upvoted content on Four Island in the last day! | ||
3 | %ul | ||
4 | - @entries.each do |entry| | ||
5 | %li | ||
6 | %strong= pluralize(entry.size, "person") | ||
7 | left an upvote on | ||
8 | = link_to entry.first.votable.title, entry.first.votable, style: "font-weight: bold; font-style: italic" | ||
diff --git a/app/views/vote_mailer/daily_report_email.text.erb b/app/views/vote_mailer/daily_report_email.text.erb new file mode 100644 index 0000000..22ea368 --- /dev/null +++ b/app/views/vote_mailer/daily_report_email.text.erb | |||
@@ -0,0 +1,5 @@ | |||
1 | Users have upvoted content on Four Island in the last day! | ||
2 | |||
3 | <% @entries.each do |entry| %> | ||
4 | - <%= pluralize(entry.size, "person") %> left an upvote on <%= entry.first.votable.title %> (<%= url_for(entry.first.votable) %>) | ||
5 | <% end %> | ||