Skip to content

Instantly share code, notes, and snippets.

@adamdilek
Created February 2, 2014 12:23
Show Gist options
  • Save adamdilek/8767626 to your computer and use it in GitHub Desktop.
Save adamdilek/8767626 to your computer and use it in GitHub Desktop.
config.action_mailer.default_url_options = { :host => 'muhammet.com' }
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'gmail.com',
:user_name => '[email protected]',
:password => 'ab2014',
:authentication => 'plain',
:enable_starttls_auto => true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment