aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb
blob: 81c19fa76d10ffa660265114ec44923b09a03579 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class <%= class_name %> < ActionMailer::Base
<% for action in actions -%>

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