c9d3b206a2b78386040a986f14d4a15f135c71fe
[selectricity] / app / models / voter_notify.rb
1 # Selectricity: Voting Machinery for the Masses
2 # Copyright (C) 2007, 2008 Benjamin Mako Hill <mako@atdot.cc>
3 # Copyright (C) 2007 Massachusetts Institute of Technology
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as
7 # published by the Free Software Foundation, either version 3 of the
8 # License, or (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Affero General Public License for more details.
14 #
15 # You should have received a copy of the GNU Affero General Public
16 # License along with this program.  If not, see
17 # <http://www.gnu.org/licenses/>.
18
19 class VoterNotify < ActionMailer::Base
20
21   def votestart(voter)
22     @subject = "[%s] Election Begun!" % voter.election.name
23     @recipients = voter.email
24     @from = MAIL_CONFIG[:from]
25     @sent_on = Time.now
26     @body = { :voter => voter }
27   end
28
29   def reminder(voter_array)
30     @subject = "Selectricity Election Reminder!"
31     @recipients = voter_array[0].email
32     @from = MAIL_CONFIG[:from]
33     @sent_on = Time.now
34     @body = { :voter_array => voter_array }
35   end
36
37 end

Benjamin Mako Hill || Want to submit a patch?