diff options
Diffstat (limited to 'actionmailer/lib/action_mailer/base.rb')
-rw-r--r-- | actionmailer/lib/action_mailer/base.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index 89e0adc04d..f31e1e007b 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -457,10 +457,11 @@ module ActionMailer #:nodoc: end # Will force ActionMailer to push new messages to the queue defined - # in the ActionMailer class when set to true + # in the ActionMailer class when set to true. # # class WelcomeMailer < ActionMailer::Base # self.async = true + # end def async=(truth) if truth require 'action_mailer/async' @@ -785,5 +786,4 @@ module ActionMailer #:nodoc: ActiveSupport.run_load_hooks(:action_mailer, self) end -end - +end
\ No newline at end of file |