In Rails, the source code ./actionmailer/lib/action_mailer/log_subscriber.rb :
module ActionMailer class LogSubscriber < ActiveSupport::LogSubscriber 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 def receive(event) return unless logger.info? info("\nReceived mail (#{event.duration.round(1)}ms)") debug(event.payload[:mail]) end def logger ActionMailer::Base.logger end end end
Rails does not provide an email filtering method, so you can:
- fork rails, delete this information and use a forked version of the rails.
- edit this code, add a filter and make a transfer request.
source share