aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb
blob: 3a1724a62eeadbb2611c5ddddc8b1df392abc2ac (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_at = Time.now)
    subject    '<%= class_name %>#<%= action %>'
    recipients ''
    from       ''
    sent_on    sent_at
    
    body       :action => '<%= action %>'
  end
<% end -%>
end