blob: 77ac3d1a2a8d116e636aef469b28ef82d27025a3 (
plain) (
blame)
1
2
3
4
5
6
7
|
class VoteMailer < ApplicationMailer
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
|