aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/mailer/templates/mailer.rb
blob: 1685b7363322ffa7ec0cff09f8a277470d14b06a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class <%= class_name %> < ActionMailer::Base
  delivers_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.com")
  end
<% end -%>
end