Class: ActionMailer::LogSubscriber

Inherits:
ActiveSupport::LogSubscriber
  • Object
show all
Defined in:
lib/action_mailer/log_subscriber.rb

Overview

Implements the ActiveSupport::LogSubscriber for logging notifications when email is delivered and received.

Instance Method Summary collapse

Instance Method Details

#deliver(event) ⇒ Object

An email was delivered.



8
9
10
11
12
13
# File 'lib/action_mailer/log_subscriber.rb', line 8

def deliver(event)
  return unless logger.info?
  recipients = Array(event.payload[:to]).join(', ')
  info("\nSent mail to #{recipients} (#{event.duration.round(1)}ms)")
  debug(event.payload[:mail])
end

#loggerObject

Use the logger configured for ActionMailer::Base



30
31
32
# File 'lib/action_mailer/log_subscriber.rb', line 30

def logger
  ActionMailer::Base.logger
end

#process(event) ⇒ Object

An email was generated.



23
24
25
26
27
# File 'lib/action_mailer/log_subscriber.rb', line 23

def process(event)
  mailer = event.payload[:mailer]
  action = event.payload[:action]
  debug("\n#{mailer}##{action}: processed outbound mail in #{event.duration.round(1)}ms")
end

#receive(event) ⇒ Object

An email was received.



16
17
18
19
20
# File 'lib/action_mailer/log_subscriber.rb', line 16

def receive(event)
  return unless logger.info?
  info("\nReceived mail (#{event.duration.round(1)}ms)")
  debug(event.payload[:mail])
end