X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/07c4c28f94d7628c0d5c48db810956f680c5f48e..2ee3731fd7cc776524f44005a99035d01168e6c0:/app/models/voter_notify.rb diff --git a/app/models/voter_notify.rb b/app/models/voter_notify.rb index d9fded5..825786a 100644 --- a/app/models/voter_notify.rb +++ b/app/models/voter_notify.rb @@ -8,7 +8,12 @@ class VoterNotify < ActionMailer::Base @body = { :voter => voter } end - def reminder(voter) + def reminder(voter_array) + @subject = "Selectricity Election Reminder!" + @recipients = voter_array[0].email + @from = MAIL_CONFIG[:from] + @sent_on = Time.now + @body = { :voter_array => voter_array } end end