diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-12-07 10:33:07 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-12-07 10:33:07 -0500 |
commit | 9681897e9ace534c4559fa9be20aa86af1a42e13 (patch) | |
tree | 85fbe155f6d1db7f8e232dac40be109fa066f9ed /app/views/vote_mailer/daily_report_email.html.haml | |
parent | de217df62df5725450ba7fd0084a00a8ebe24599 (diff) | |
download | thoughts-9681897e9ace534c4559fa9be20aa86af1a42e13.tar.gz thoughts-9681897e9ace534c4559fa9be20aa86af1a42e13.tar.bz2 thoughts-9681897e9ace534c4559fa9be20aa86af1a42e13.zip |
Add daily upvote email like AO3 kudos
Diffstat (limited to 'app/views/vote_mailer/daily_report_email.html.haml')
-rw-r--r-- | app/views/vote_mailer/daily_report_email.html.haml | 8 |
1 files changed, 8 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" | ||