Sha256: f300ac810eb3dc97af12d5f47ac84ac117e9008530811bd151fb010cd2d18902
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
## # Mailer methods can be defined using the simple format: # # email :registration_email do |name, user| # from 'admin@site.com' # to user.email # subject 'Welcome to the site!' # locals :name => name # content_type 'text/html' # optional, defaults to plain/text # via :sendmail # optional, to smtp if defined, otherwise sendmail # render 'registration_email' # end # # You can set the default delivery settings from your app through: # # set :delivery_method, :smtp => { # :address => 'smtp.yourserver.com', # :port => '25', # :user_name => 'user', # :password => 'pass', # :authentication => :plain, # :plain, :login, :cram_md5, no auth by default # :domain => "localhost.localdomain" # the HELO domain provided by the client to the server # } # # or sendmail (default): # # set :delivery_method, :sendmail # # or for tests: # # set :delivery_method, :test # # or storing emails locally: # # set :delivery_method, :file => { # :location => "#{Tennpipes.root}/tmp/emails", # } # # and then all delivered mail will use these settings unless otherwise specified. # <%= @project_name %>::<%= @app_name %>.mailer :<%= @short_name %> do <%- if @actions.nil? || @actions.empty? -%> # Message definitions here ... <%- else -%> <%- @actions.each do |action| -%> email <%=action.inspect%> do # Your mailer goes here ... end <%- end -%> <%- end -%> end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tennpipes-init-3.6.6 | lib/tennpipes-init/generators/templates/mailer.rb.tt |