blob: 90d2868a0d1e09a428fa589ae9b6981f3882c885 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
class VoteMailer < ApplicationMailer
helper :votes
def daily_report_email
@entries = params[:votes].group_by { |v| "#{v.votable_type}_#{v.votable_id}" }.values
# weird way of getting the admin's email
mail to: User.first.email, subject: "[Four Island] You have upvotes!"
end
end
|