mirror of https://github.com/rails/rails
Mailer should give self as payload because it contains all the information needed (as the template rendered and the mailer name).
This commit is contained in:
parent
7045c4c279
commit
802b08da00
|
@ -499,7 +499,7 @@ module ActionMailer #:nodoc:
|
|||
logger.debug "\n#{mail.encoded}"
|
||||
end
|
||||
|
||||
ActiveSupport::Notifications.instrument("action_mailer.deliver", :mail => mail) do
|
||||
ActiveSupport::Notifications.instrument("action_mailer.deliver", :mail => self) do
|
||||
begin
|
||||
self.delivery_method.perform_delivery(mail) if perform_deliveries
|
||||
rescue Exception => e # Net::SMTP errors or sendmail pipe errors
|
||||
|
|
Loading…
Reference in New Issue