Sha256: 0a250eb7418748ef2720692e9506b2a46b64d20ce75e34b44673687959e5409a
Contents?: true
Size: 376 Bytes
Versions: 18
Compression:
Stored size: 376 Bytes
Contents
SMTP_SETTINGS = { address: ENV.fetch('SMTP_ADDRESS', 'smpt.sendgrid.net'), # example: 'smtp.sendgrid.net' authentication: :plain, domain: ENV.fetch('SMTP_DOMAIN', 'appname.com'), # example: 'this-app.com' enable_starttls_auto: true, password: ENV.fetch('SMTP_PASSWORD', 'defaultpassword'), port: '587', user_name: ENV.fetch('SMTP_USERNAME', 'defaultusername') }
Version data entries
18 entries across 18 versions & 1 rubygems