Skip to content

Instantly share code, notes, and snippets.

@MeenakshiNaik
Last active April 5, 2016 10:11
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 MeenakshiNaik/f2ac188882abc784af3ccfa546c0e08a to your computer and use it in GitHub Desktop.
Save MeenakshiNaik/f2ac188882abc784af3ccfa546c0e08a to your computer and use it in GitHub Desktop.
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings= {
:address => 'email-smtp.us-east-1.amazonaws.com',
:authentication => :login,
:user_name => '<previously configured smtp username>',
:password => '<previously configured smtp password>',
:enable_starttls_auto => true,
:port => 465
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment