Sha256: 8c8a0a86c66c2be5e25786c724cbb86169bd69f399152a1785392e13b8e866aa

Contents?: true

Size: 556 Bytes

Versions: 30

Compression:

Stored size: 556 Bytes

Contents

# frozen_string_literal: true
SMTP_SETTINGS = {
  address:              ENV.fetch(<%= "#{app_name.upcase}_SMTP_ADDRESS" %>), # example: "smtp.sendgrid.net"
  authentication:       :plain,
  domain:               ENV.fetch(<%= "#{app_name.upcase}_SMTP_DOMAIN" %>), # example: "heroku.com"
  enable_starttls_auto: true,
  password:             ENV.fetch(<%= "#{app_name.upcase}_SMTP_PASSWORD" %>),
  port:                 ENV.fetch(<%= "#{app_name.upcase}_SMTP_PORT" %>),
  user_name:            ENV.fetch(<%= "#{app_name.upcase}_SMTP_USERNAME" %>)
}.freeze

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
onotole-2.0.2 templates/smtp.rb.erb
onotole-2.0.1 templates/smtp.rb.erb
onotole-2.0.0 templates/smtp.rb.erb
onotole-1.2.11 templates/smtp.rb.erb
onotole-1.2.10 templates/smtp.rb.erb
onotole-1.2.9 templates/smtp.rb.erb
onotole-1.2.8 templates/smtp.rb.erb
onotole-1.2.7 templates/smtp.rb.erb
onotole-1.2.6 templates/smtp.rb.erb
onotole-1.2.5 templates/smtp.rb.erb
onotole-1.2.4 templates/smtp.rb.erb
onotole-1.2.3 templates/smtp.rb.erb
onotole-1.2.2 templates/smtp.rb.erb
onotole-1.2.1 templates/smtp.rb.erb
onotole-1.1.21 templates/smtp.rb.erb
onotole-1.1.20 templates/smtp.rb.erb
onotole-1.1.19 templates/smtp.rb.erb
onotole-1.1.18 templates/smtp.rb.erb
onotole-1.1.17 templates/smtp.rb.erb
onotole-1.1.16 templates/smtp.rb.erb