1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Making the actionmailer docs more explicit to understand [ci skip]

This commit is contained in:
Rishi Jain 2014-10-26 00:17:51 -05:00 committed by Zachary Scott
parent 89397d09eb
commit 747a1c9b28
2 changed files with 6 additions and 3 deletions

View file

@ -84,7 +84,8 @@ module ActionMailer
# name as the method in your mailer model. For example, in the mailer defined above, the template at # name as the method in your mailer model. For example, in the mailer defined above, the template at
# <tt>app/views/notifier/welcome.text.erb</tt> would be used to generate the email. # <tt>app/views/notifier/welcome.text.erb</tt> would be used to generate the email.
# #
# Variables defined in the model are accessible as instance variables in the view. # Variables defined in the methods of your mailer model are accessible as instance variables in their
# corresponding view.
# #
# Emails by default are sent in plain text, so a sample view for our model example might look like this: # Emails by default are sent in plain text, so a sample view for our model example might look like this:
# #
@ -702,8 +703,8 @@ module ActionMailer
# The main method that creates the message and renders the email templates. There are # The main method that creates the message and renders the email templates. There are
# two ways to call this method, with a block, or without a block. # two ways to call this method, with a block, or without a block.
# #
# Both methods accept a headers hash. This hash allows you to specify the most used headers # It accepts a headers hash. This hash allows you to specify
# in an email message, these are: # the most used headers in an email message, these are:
# #
# * +:subject+ - The subject of the message, if this is omitted, Action Mailer will # * +:subject+ - The subject of the message, if this is omitted, Action Mailer will
# ask the Rails I18n class for a translated +:subject+ in the scope of # ask the Rails I18n class for a translated +:subject+ in the scope of

View file

@ -1,6 +1,8 @@
require 'active_job' require 'active_job'
module ActionMailer module ActionMailer
# The <tt>ActionMailer::DeliveryJob</tt> class is used when you
# want to send emails outside of the request-response cycle.
class DeliveryJob < ActiveJob::Base #:nodoc: class DeliveryJob < ActiveJob::Base #:nodoc:
queue_as :mailers queue_as :mailers