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

Version Path
jetfuel-1.19.24 templates/smtp.rb
jetfuel-1.19.23 templates/smtp.rb
jetfuel-1.19.22 templates/smtp.rb
jetfuel-1.19.21 templates/smtp.rb
jetfuel-1.19.20 templates/smtp.rb
jetfuel-1.19.19 templates/smtp.rb
jetfuel-1.19.18 templates/smtp.rb
jetfuel-1.19.17 templates/smtp.rb
jetfuel-1.19.16 templates/smtp.rb
jetfuel-1.19.15 templates/smtp.rb
jetfuel-1.19.14 templates/smtp.rb
jetfuel-1.19.13 templates/smtp.rb
jetfuel-1.19.12 templates/smtp.rb
jetfuel-1.19.11 templates/smtp.rb
jetfuel-1.19.10 templates/smtp.rb
jetfuel-1.19.9 templates/smtp.rb
jetfuel-1.19.8 templates/smtp.rb
jetfuel-1.19.7 templates/smtp.rb