Sha256: e05530227a3f7bf31f4e3051efc370f192984d1e572d9747016b49b21a9e1f57

Contents?: true

Size: 1.38 KB

Versions: 19

Compression:

Stored size: 1.38 KB

Contents

module EffectiveLogging
  class EmailLogger
    def self.delivering_email(message)
      return if EffectiveLogging.supressed?
      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

19 entries across 19 versions & 1 rubygems

Version Path
effective_logging-3.0.11 lib/effective_logging/email_logger.rb
effective_logging-3.0.10 lib/effective_logging/email_logger.rb
effective_logging-3.0.9 lib/effective_logging/email_logger.rb
effective_logging-3.0.8 lib/effective_logging/email_logger.rb
effective_logging-3.0.7 lib/effective_logging/email_logger.rb
effective_logging-3.0.6 lib/effective_logging/email_logger.rb
effective_logging-3.0.5 lib/effective_logging/email_logger.rb
effective_logging-3.0.4 lib/effective_logging/email_logger.rb
effective_logging-3.0.3 lib/effective_logging/email_logger.rb
effective_logging-3.0.2 lib/effective_logging/email_logger.rb
effective_logging-3.0.1 lib/effective_logging/email_logger.rb
effective_logging-3.0.0 lib/effective_logging/email_logger.rb
effective_logging-2.1.2 lib/effective_logging/email_logger.rb
effective_logging-2.1.1 lib/effective_logging/email_logger.rb
effective_logging-2.1.0 lib/effective_logging/email_logger.rb
effective_logging-2.0.8 lib/effective_logging/email_logger.rb
effective_logging-2.0.7 lib/effective_logging/email_logger.rb
effective_logging-2.0.6 lib/effective_logging/email_logger.rb
effective_logging-2.0.5 lib/effective_logging/email_logger.rb