class Datadog::Tracing::Contrib::ActionMailer::Integration
Description of ActionMailer integration
def self.compatible?
def self.compatible? super && version >= MINIMUM_VERSION && !defined?(::ActiveSupport::Notifications).nil? end
def self.loaded?
def self.loaded? !defined?(::ActionMailer).nil? end
def self.version
def self.version Gem.loaded_specs['actionmailer'] && Gem.loaded_specs['actionmailer'].version end
def auto_instrument?
enabled by rails integration so should only auto instrument
def auto_instrument? !Contrib::Rails::Utils.railtie_supported? end
def new_configuration
def new_configuration Configuration::Settings.new end
def patcher
def patcher ActionMailer::Patcher end