Sha256: eea9f7884bd958ed814df8b84dca45ed6e39fc6132b8a44f423c71e5c03e112b

Contents?: true

Size: 1.34 KB

Versions: 10

Compression:

Stored size: 1.34 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: { post: @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|
        user = (User.where(email: to).first rescue nil)

        logged_fields[:to] = to
        logged_fields[:associated] ||= user
        logged_fields[:user] ||= user

        ::EffectiveLogger.email("#{message.subject} - #{message.to.join(', ')}", logged_fields)
      end
    end

  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
effective_logging-2.0.4 lib/effective_logging/email_logger.rb
effective_logging-2.0.3 lib/effective_logging/email_logger.rb
effective_logging-2.0.2 lib/effective_logging/email_logger.rb
effective_logging-2.0.1 lib/effective_logging/email_logger.rb
effective_logging-2.0.0 lib/effective_logging/email_logger.rb
effective_logging-1.11.5 lib/effective_logging/email_logger.rb
effective_logging-1.11.4 lib/effective_logging/email_logger.rb
effective_logging-1.11.3 lib/effective_logging/email_logger.rb
effective_logging-1.11.2 lib/effective_logging/email_logger.rb
effective_logging-1.11.1 lib/effective_logging/email_logger.rb