diff options
Diffstat (limited to 'app/mailers/vote_mailer.rb')
-rw-r--r-- | app/mailers/vote_mailer.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/mailers/vote_mailer.rb b/app/mailers/vote_mailer.rb new file mode 100644 index 0000000..77ac3d1 --- /dev/null +++ b/app/mailers/vote_mailer.rb | |||
@@ -0,0 +1,7 @@ | |||
1 | class VoteMailer < ApplicationMailer | ||
2 | def daily_report_email | ||
3 | @entries = params[:votes].group_by { |v| "#{v.votable_type}_#{v.votable_id}" }.values | ||
4 | # weird way of getting the admin's email | ||
5 | mail to: User.first.email, subject: "[Four Island] You have upvotes!" | ||
6 | end | ||
7 | end | ||