Class: ActionMailer::LogSubscriber

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

Overview

Action Mailer LogSubscriber

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

Constant Summary

Constants inherited from ActiveSupport::LogSubscriber

ActiveSupport::LogSubscriber::BLACK, ActiveSupport::LogSubscriber::BLUE, ActiveSupport::LogSubscriber::BOLD, ActiveSupport::LogSubscriber::CLEAR, ActiveSupport::LogSubscriber::CYAN, ActiveSupport::LogSubscriber::GREEN, ActiveSupport::LogSubscriber::MAGENTA, ActiveSupport::LogSubscriber::MODES, ActiveSupport::LogSubscriber::RED, ActiveSupport::LogSubscriber::WHITE, ActiveSupport::LogSubscriber::YELLOW

Instance Attribute Summary

Attributes inherited from ActiveSupport::LogSubscriber

#event_levels

Attributes inherited from ActiveSupport::Subscriber

#patterns

Instance Method Summary collapse

Methods inherited from ActiveSupport::LogSubscriber

attach_to, #call, flush_all!, #initialize, log_subscribers, #publish_event, #silenced?

Methods inherited from ActiveSupport::Subscriber

attach_to, #call, detach_from, #initialize, method_added, #publish_event, subscribers

Constructor Details

This class inherits a constructor from ActiveSupport::LogSubscriber

Instance Method Details

#deliver(event) ⇒ Object

An email was delivered.



12
13
14
15
16
17
18
19
20
21
22
23
# File 'actionmailer/lib/action_mailer/log_subscriber.rb', line 12

def deliver(event)
  info do
    perform_deliveries = event.payload[:perform_deliveries]
    if perform_deliveries
      "Delivered mail #{event.payload[:message_id]} (#{event.duration.round(1)}ms)"
    else
      "Skipped delivery of mail #{event.payload[:message_id]} as `perform_deliveries` is false"
    end
  end

  debug { event.payload[:mail] }
end

#loggerObject

Use the logger configured for ActionMailer::Base.



37
38
39
# File 'actionmailer/lib/action_mailer/log_subscriber.rb', line 37

def logger
  ActionMailer::Base.logger
end

#process(event) ⇒ Object

An email was generated.



27
28
29
30
31
32
33
# File 'actionmailer/lib/action_mailer/log_subscriber.rb', line 27

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