Created
December 8, 2011 23:25
-
-
Save SpencerCooley/1449222 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#typical smtp_settings for gmail account | |
config.action_mailer.smtp_settings = { | |
:address => "smtp.gmail.com", | |
:port => 587, | |
:domain => "domain.of.sender.net", | |
:authentication => "plain" | |
:user_name => "spencecooley" | |
:password => "secret" | |
:enable_starttls_auto => true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment