diff options
author | Zachary Scott <e@zzak.io> | 2014-10-26 10:09:41 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-10-26 10:09:41 -0700 |
commit | e8b60a9572786662a649ab44ec8aa012b12f79e9 (patch) | |
tree | 9692a641c232bc73191605167393f854e41b2024 | |
parent | 89397d09ebb7ca4089f17820d05d5eb223913652 (diff) | |
parent | 747a1c9b281d274f00e2732b84f0f34b8bbce188 (diff) | |
download | rails-e8b60a9572786662a649ab44ec8aa012b12f79e9.tar.gz rails-e8b60a9572786662a649ab44ec8aa012b12f79e9.tar.bz2 rails-e8b60a9572786662a649ab44ec8aa012b12f79e9.zip |
Merge branch 'rishijain-update_docs_1'
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 7 | ||||
-rw-r--r-- | actionmailer/lib/action_mailer/delivery_job.rb | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 798241aaf8..a70bf1544a 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -84,7 +84,8 @@ module ActionMailer # 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. # - # 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: # @@ -702,8 +703,8 @@ module ActionMailer # 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. # - # Both methods accept a headers hash. This hash allows you to specify the most used headers - # in an email message, these are: + # It accepts a headers hash. This hash allows you to specify + # the most used headers in an email message, these are: # # * +: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 diff --git a/actionmailer/lib/action_mailer/delivery_job.rb b/actionmailer/lib/action_mailer/delivery_job.rb index 622f202695..95231411fb 100644 --- a/actionmailer/lib/action_mailer/delivery_job.rb +++ b/actionmailer/lib/action_mailer/delivery_job.rb @@ -1,6 +1,8 @@ require 'active_job' 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: queue_as :mailers |