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`
When using the `:exim` `delivery_method` option, this may be used to specify the absolute path to `exim` (if needed) Example: '/usr/sbin/exim'
Optional arguments to pass to `exim` Note that this will override the defaults set by the Mail gem (currently: '-i -t') So, if set here, be sure to set all the arguments you require. Example: '-i -t -X/tmp/traffic.log'
Sender and Receiver email addresses Examples:
sender - my.email.address@gmail.com receiver - your.email.address@gmail.com
Folder where mail will be kept when using the `:file` `delivery_method` option. Default location is '$HOME/Backup/emails' Example: '/tmp/test-mails'
OpenSSL Verify Mode Example: none - Only use this option for a self-signed and/or wildcard certificate
Username and Password (sender email's credentials) Examples:
user_name - meskyanichi password - my_secret_password
When using the `:sendmail` `delivery_method` option, this may be used to specify the absolute path to `sendmail` (if needed) Example: '/usr/sbin/sendmail'
Optional arguments to pass to `sendmail` Note that this will override the defaults set by the Mail gem (currently: '-i -t') So, if set here, be sure to set all the arguments you require. Example: '-i -t -X/tmp/traffic.log'
Generated with the Darkfish Rdoc Generator 2.