1 class VoterNotify < ActionMailer::Base
4 @subject = "[%s] Election Begun!" % voter.election.name
5 @recipients = voter.email
6 @from = MAIL_CONFIG[:from]
8 @body = { :voter => voter }
11 def reminder(voter_array)
12 @subject = "Selectricity Election Reminder!"
13 @recipients = voter_array[0].email
14 @from = MAIL_CONFIG[:from]
16 @body = { :voter_array => voter_array }