Sha256: 92979a57212cb67f440c96153c2e4e98e7a2b881ff728fc4c240afeac7ec47b6

Contents?: true

Size: 1.27 KB

Versions: 9

Compression:

Stored size: 1.27 KB

Contents

module EffectiveLogging
  class EmailLogger
    def self.delivering_email(message)
      return unless message.present?

      # collect a Hash of arguments used to invoke EffectiveLogger.success
      logged_fields = { from: message.from.join(','), to: message.to, subject: message.subject }

      # Add a log header to your mailer to pass some objects or additional things to EffectiveLogger
      # mail(to: 'admin@example.com', subject: @post.title, log: { associated: @post })
      if message.header['log'].present?
        # This is a bit sketchy, but gives access to the object in Rails 4.2 anyway
        logged_fields.merge!(message.header['log'].instance_variable_get(:@value) || {})

        # Get rid of the extra header, as it should not be set in the real mail message.
        message.header['log'] = nil
      end

      body = (message.body.try(:parts) || []).find { |part| part.content_type.to_s.downcase.include?('text/html') }

      logged_fields[:email] = "#{message.header}<hr>#{(body.presence || message.body)}"

      (message.to || []).each do |to|
        logged_fields[:to] = to
        logged_fields[:user] ||= (User.where(email: to).first rescue nil)

        ::EffectiveLogger.success("email sent: #{message.subject}", logged_fields)
      end
    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
effective_logging-1.9.0 lib/effective_logging/email_logger.rb
effective_logging-1.8.1 lib/effective_logging/email_logger.rb
effective_logging-1.8.0 lib/effective_logging/email_logger.rb
effective_logging-1.7.1 lib/effective_logging/email_logger.rb
effective_logging-1.7.0 lib/effective_logging/email_logger.rb
effective_logging-1.6.0 lib/effective_logging/email_logger.rb
effective_logging-1.5.9 lib/effective_logging/email_logger.rb
effective_logging-1.5.8 lib/effective_logging/email_logger.rb
effective_logging-1.5.7 lib/effective_logging/email_logger.rb