class ActionMailer::LogSubscriber
Implements the ActiveSupport::LogSubscriber for logging notifications when email is delivered and received.
Public Instance Methods
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 8
def deliver(event)
  info do
    recipients = Array(event.payload[:to]).join(', ')
    "\nSent mail to #{recipients} (#{event.duration.round(1)}ms)"
  end
  debug { event.payload[:mail] }
end An email was delivered.
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 33 def logger ActionMailer::Base.logger end
Use the logger configured for ActionMailer::Base
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 24
def process(event)
  debug do
    mailer = event.payload[:mailer]
    action = event.payload[:action]
    "\n#{mailer}##{action}: processed outbound mail in #{event.duration.round(1)}ms"
  end
end An email was generated.
# File actionmailer/lib/action_mailer/log_subscriber.rb, line 18
def receive(event)
  info { "\nReceived mail (#{event.duration.round(1)}ms)" }
  debug { event.payload[:mail] }
end An email was received.
    © 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.