Sha256: af4a959d5f10ecd00b40861d197f0d0e135ac1356e5b63c1fc4d3e1db1079202
Contents?: true
Size: 859 Bytes
Versions: 45
Compression:
Stored size: 859 Bytes
Contents
## # Mail [Notifier] # # The default delivery method for Mail Notifiers is 'SMTP'. # See the documentation for other delivery options. # notify_by Mail do |mail| mail.on_success = true mail.on_warning = true mail.on_failure = true mail.from = "sender@email.com" mail.to = "receiver@email.com" mail.cc = "cc@email.com" mail.bcc = "bcc@email.com" mail.reply_to = "reply_to@email.com" mail.address = "smtp.gmail.com" mail.port = 587 mail.domain = "your.host.name" mail.user_name = "sender@email.com" mail.password = "my_password" mail.authentication = "plain" mail.encryption = :starttls end
Version data entries
45 entries across 45 versions & 10 rubygems