Skip to content

Instantly share code, notes, and snippets.

@dominikgrygiel
Created April 5, 2012 07:52
Show Gist options
  • Save dominikgrygiel/2308852 to your computer and use it in GitHub Desktop.
Save dominikgrygiel/2308852 to your computer and use it in GitHub Desktop.
sample smtp config
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'baci.lindsaar.net',
:user_name => '<username>',
:password => '<password>',
:authentication => 'plain',
:enable_starttls_auto => true }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment