Sha256: 5ce479409709fc99801889a3cb1a6d833c08593e6554906937344f90f57dc3d0
Contents?: true
Size: 338 Bytes
Versions: 4
Compression:
Stored size: 338 Bytes
Contents
# frozen_string_literal: true SMTP_SETTINGS = { address: ENV.fetch('SMTP_ADDRESS'), # example: "smtp.sendgrid.net" authentication: :login, domain: ENV.fetch('SMTP_DOMAIN'), # example: "heroku.com" enable_starttls_auto: true, password: ENV.fetch('SMTP_PASSWORD'), port: '587', user_name: ENV.fetch('SMTP_USERNAME') }.freeze
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
welaika-suspenders-3.0 | templates/smtp.rb |
welaika-suspenders-2.36 | templates/smtp.rb |
welaika-suspenders-2.35 | templates/smtp.rb |
welaika-suspenders-2.34 | templates/smtp.rb |