aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/mailer/templates/mailer.rb
blob: 6621ba9a01ef1522041c158d177a30fc92c40388 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'action_mailer'

class <%= class_name %> < ActionMailer::Base
<% for action in actions -%>

  def <%= action %>(sent_on = Time.now)
    @recipients = ''
    @from       = ''
    @subject    = ''
    @body       = {}
    @sent_on    = sent_on
  end
<% end -%>
end