Created
May 27, 2009 12:06
-
-
Save zhhz/118612 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
| Merb::BootLoader.after_app_loads do | |
| # for the mailer - gmail | |
| Merb::Mailer.config = { | |
| :host => 'smtp.gmail.com', | |
| :port => '587', | |
| :user => 'your_name@your_domain', | |
| :pass => 'your_pass', | |
| :auth => :plain, # :plain, ;login, :cram_md5 | |
| :domain => "your_domain" | |
| } | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment