diff options
author | Matthew Mongeau <halogenandtoast@gmail.com> | 2017-06-16 10:06:23 +0900 |
---|---|---|
committer | Matthew Mongeau <halogenandtoast@gmail.com> | 2017-06-16 10:13:40 +0900 |
commit | 425e351a5e6e9a25237bf0fcc546170c753922be (patch) | |
tree | f1115b4e25d3d8478837d823812e190765404a7e /actionmailer/lib/action_mailer | |
parent | e57d8d090d5d6860e3a5bb3257d6aed5b644ea25 (diff) | |
download | rails-425e351a5e6e9a25237bf0fcc546170c753922be.tar.gz rails-425e351a5e6e9a25237bf0fcc546170c753922be.tar.bz2 rails-425e351a5e6e9a25237bf0fcc546170c753922be.zip |
Document setting the delivery_job for ActionMailer [ci skip]
Diffstat (limited to 'actionmailer/lib/action_mailer')
-rw-r--r-- | actionmailer/lib/action_mailer/message_delivery.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/actionmailer/lib/action_mailer/message_delivery.rb b/actionmailer/lib/action_mailer/message_delivery.rb index 595646d002..3295511ddc 100644 --- a/actionmailer/lib/action_mailer/message_delivery.rb +++ b/actionmailer/lib/action_mailer/message_delivery.rb @@ -51,6 +51,14 @@ module ActionMailer # Notifier.welcome(User.first).deliver_later!(wait: 1.hour) # Notifier.welcome(User.first).deliver_later!(wait_until: 10.hours.from_now) # + # By default, the email will be enqueued using ActionMailer::DeliveryJob. Each + # ActionMailer::Base class can specify the job to use by setting the class variable + # +delivery_job+. + # + # class AccountRegistrationMailer < ApplicationMailer + # self.delivery_job = RegistrationDeliveryJob + # end + # # Options: # # * <tt>:wait</tt> - Enqueue the email to be delivered with a delay @@ -67,6 +75,14 @@ module ActionMailer # Notifier.welcome(User.first).deliver_later(wait: 1.hour) # Notifier.welcome(User.first).deliver_later(wait_until: 10.hours.from_now) # + # By default, the email will be enqueued using ActionMailer::DeliveryJob. Each + # ActionMailer::Base class can specify the job to use by setting the class variable + # +delivery_job+. + # + # class AccountRegistrationMailer < ApplicationMailer + # self.delivery_job = RegistrationDeliveryJob + # end + # # Options: # # * <tt>:wait</tt> - Enqueue the email to be delivered with a delay. |