aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/railties/subscriber.rb
blob: af9c47723790b9d81167935ead40134a4a8a9aca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module ActionMailer
  module Railties
    class Subscriber < Rails::Subscriber
      def deliver(event)
        recipients = Array(event.payload[:to]).join(', ')
        info("Sent mail to #{recipients} (%1.fms)" % event.duration)
        debug("\n#{event.payload[:mail]}")
      end

      def receive(event)
        info("Received mail (%.1fms)" % event.duration)
        debug("\n#{event.payload[:mail]}")
      end

      def logger
        ActionMailer::Base.logger
      end
    end
  end
end