Sha256: 84ae912dd2786c3bc9f3206eba099c57c00f04f0acb66daf723093f00be05fca

Contents?: true

Size: 307 Bytes

Versions: 5

Compression:

Stored size: 307 Bytes

Contents

SMTP_SETTINGS = {
  address: ENV.fetch('SMTP_ADDRESS'), # example: "smtp.sendgrid.net"
  authentication: :plain,
  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

5 entries across 5 versions & 1 rubygems

Version Path
kratos-1.1.0 templates/smtp.rb
kratos-1.0.3 templates/smtp.rb
kratos-1.0.2 templates/smtp.rb
kratos-1.0.1 templates/smtp.rb
kratos-1.0.0 templates/smtp.rb