aboutsummaryrefslogblamecommitdiffstats
path: root/actionmailer/lib/rails/generators/mailer/templates/mailer.rb
blob: bce64a5e6e0c71580d99140a29377179d523473e (plain) (tree)
1
2
3
4
5
6
7
8
                            
                                           
                               
 


                                                                 
                                                           


                    
 
                             
     
          
   
          
<% module_namespacing do -%>
class <%= class_name %> < ApplicationMailer
<% actions.each do |action| -%>

  # Subject can be set in your I18n file at config/locales/en.yml
  # with the following lookup:
  #
  #   en.<%= file_path.tr("/",".") %>.<%= action %>.subject
  #
  def <%= action %>
    @greeting = "Hi"

    mail to: "to@example.org"
  end
<% end -%>
end
<% end -%>