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
14
15
# File '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

#loggerObject

Use the logger configured for ActionMailer::Base



33
34
35
# File 'lib/action_mailer/log_subscriber.rb', line 33

def logger
  ActionMailer::Base.logger
end

#process(event) ⇒ Object

An email was generated.



24
25
26
27
28
29
30
# File '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

#receive(event) ⇒ Object

An email was received.



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

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