aboutsummaryrefslogblamecommitdiffstats
path: root/actionmailer/lib/action_mailer/log_subscriber.rb
blob: c1081567927b57885ae9df68a99623b456453541 (plain) (tree)
1
2
3
4
5
6
7
8
9
                   

                                                                              
                                                    
                             
                      
                                
                                                       
                                                                         


                                 
                            
                      

                                                            


                                 
                                                      





                               
                                                    
module ActionMailer
  # Implements the ActiveSupport::LogSubscriber for logging notifications when
  # email is delivered and received.
  class LogSubscriber < ActiveSupport::LogSubscriber
    # An email was delivered.
    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

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

    # Use the logger configured for ActionMailer::Base
    def logger
      ActionMailer::Base.logger
    end
  end
end

ActionMailer::LogSubscriber.attach_to :action_mailer