aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/mailer/templates/mailer.rb
blob: cdc6e412665d46888d8cd337ce24c58be401c0da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class <%= class_name %> < ActionMailer::Base
  self.defaults :from => "from@example.com"
<% for action in actions -%>

  # Subject can be set in your I18n file at config/locales/en.yml
  # with the following lookup:
  #
  #   en.actionmailer.<%= file_name %>.<%= action %>.subject
  #
  def <%= action %>
    @greeting = "Hi"
    mail(:to => "to@example.org")
  end
<% end -%>
end