Implements the ActiveSupport::LogSubscriber
for logging notifications when email is delivered or received.
Methods
Instance Public methods
deliver(event)
An email was delivered.
Source:
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 10
def deliver(event)
info do
recipients = Array(event.payload[:to]).join(", ")
"Sent mail to #{recipients} (#{event.duration.round(1)}ms)"
end
debug { event.payload[:mail] }
end
logger()
Use the logger configured for ActionMailer::Base
.
Source:
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 35
def logger
ActionMailer::Base.logger
end