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

Fix formatting of ActionMailer::MessageDelivery doc [ci skip]

This commit is contained in:
Ryuta Kamizono 2017-06-16 10:33:53 +09:00
parent 7dfc5350ec
commit 6bb7d50dec

View file

@ -51,8 +51,8 @@ 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
# By default, the email will be enqueued using <tt>ActionMailer::DeliveryJob</tt>. Each
# <tt>ActionMailer::Base</tt> class can specify the job to use by setting the class variable
# +delivery_job+.
#
# class AccountRegistrationMailer < ApplicationMailer
@ -75,8 +75,8 @@ 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
# By default, the email will be enqueued using <tt>ActionMailer::DeliveryJob</tt>. Each
# <tt>ActionMailer::Base</tt> class can specify the job to use by setting the class variable
# +delivery_job+.
#
# class AccountRegistrationMailer < ApplicationMailer