Sha256: 1066f499831e34069a4f747de35fc83be27cccf2156f96b83313a2bcaaeeeda1

Contents?: true

Size: 299 Bytes

Versions: 8

Compression:

Stored size: 299 Bytes

Contents

SMTP_SETTINGS = {
  address: ENV.fetch("SMTP_ADDRESS"), # example: "smtp.mandrill.com"
  authentication: :plain,
  domain: ENV.fetch("SMTP_DOMAIN"), # example: "myapp.com"
  enable_starttls_auto: true,
  password: ENV.fetch("SMTP_PASSWORD"),
  port: "587",
  user_name: ENV.fetch("SMTP_USERNAME")
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
slining-1.7.0 templates/smtp.rb
slining-1.6.0 templates/smtp.rb
slining-1.5.0 templates/smtp.rb
slining-1.4.0 templates/smtp.rb
slining-1.3.0 templates/smtp.rb
slining-1.2.0 templates/smtp.rb
slining-1.1.0 templates/smtp.rb
slining-1.0.1 templates/smtp.rb