Skip to content

Instantly share code, notes, and snippets.

@j1n6
Created May 2, 2014 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j1n6/0aa1c138f939b20f06ae to your computer and use it in GitHub Desktop.
Save j1n6/0aa1c138f939b20f06ae to your computer and use it in GitHub Desktop.
AWS SMS Setting
config.action_mailer.perform_deliveries = true
config.action_mailer.smtp_settings = {
address: ENV['SMTP_SERVER'],
authentication: :login,
domain: 'example.com',
port: 25,
password: ENV['SMTP_PASSWORD'],
user_name: ENV['SMTP_USERNAME'],
enable_starttls_auto: true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment