Sha256: b46213b6d3ed7a6437708c792cd5c19712d852f013f531c001bf0d1b79a783fa

Contents?: true

Size: 302 Bytes

Versions: 18

Compression:

Stored size: 302 Bytes

Contents

SMTP_SETTINGS = {
  address: ENV.fetch('SMTP_ADDRESS'), # example: 'smtp.sendgrid.net'
  authentication: :plain,
  domain: ENV.fetch('SMTP_DOMAIN'), # example: 'this-app.com'
  enable_starttls_auto: true,
  password: ENV.fetch('SMTP_PASSWORD'),
  port: '587',
  user_name: ENV.fetch('SMTP_USERNAME')
}

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
jetfuel-1.19.6 templates/smtp.rb
jetfuel-1.19.5 templates/smtp.rb
jetfuel-1.19.4 templates/smtp.rb
jetfuel-1.19.3 templates/smtp.rb
jetfuel-1.19.2 templates/smtp.rb
jetfuel-1.19.1 templates/smtp.rb
jetfuel-1.19.0 templates/smtp.rb
jetfuel-1.18.6 templates/smtp.rb
jetfuel-1.18.5 templates/smtp.rb
jetfuel-1.18.4 templates/smtp.rb
jetfuel-1.18.3 templates/smtp.rb
jetfuel-1.18.2 templates/smtp.rb
jetfuel-1.18.1 templates/smtp.rb
jetfuel-1.18.0 templates/smtp.rb
suspenders-1.14.0 templates/smtp.rb
suspenders-1.13.0 templates/smtp.rb
suspenders-1.12.0 templates/smtp.rb
suspenders-1.11.0 templates/smtp.rb