Method: Checkup::Configuration::Notifier::Mail.delivery_method

Defined in:
lib/checkup/configuration/notifier/mail.rb

.delivery_methodObject

Mail delivery method to be used by the Mail gem. Supported methods:

‘:smtp` [::Mail::SMTP] (default) : Settings used only by this method: : `address`, `port`, `domain`, `user_name`, `password` : `authentication`, `enable_starttls_auto`, `openssl_verify_mode`

‘:sendmail` [::Mail::Sendmail] : Settings used only by this method: : `sendmail`, `sendmail_args`

‘:exim` [::Mail::Exim] : Settings used only by this method: : `exim`, `exim_args`

‘:file` [::Mail::FileDelivery] : Settings used only by this method: : `mail_folder`



30
31
32
# File 'lib/checkup/configuration/notifier/mail.rb', line 30

def delivery_method
  @delivery_method
end