Implements the ActiveSupport::LogSubscriber
for logging notifications when email is delivered or received.
Methods
Instance Public methods
deliver(event)
An email was delivered.
📝 Source code
# 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
🔎 See on GitHub
logger()
Use the logger configured for ActionMailer::Base
.
📝 Source code
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 35
def logger
ActionMailer::Base.logger
end
🔎 See on GitHub
process(event)
An email was generated.
📝 Source code
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 26
def process(event)
debug do
mailer = event.payload[:mailer]
action = event.payload[:action]
"#{mailer}##{action}: processed outbound mail in #{event.duration.round(1)}ms"
end
end
🔎 See on GitHub
receive(event)
An email was received.
📝 Source code
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 20
def receive(event)
info { "Received mail (#{event.duration.round(1)}ms)" }
debug { event.payload[:mail] }
end
🔎 See on GitHub