Merge pull request #25 from kimptoc/patch-1

amended rails config, smtp_settings is :address, not :host (at least und...
This commit is contained in:
Samuel Cochran 2011-12-22 11:38:16 -08:00
commit 1b4ab9fdac
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ Under RVM your mailcatcher command may only available under the ruby you install
To set up your rails app, I recommend adding this to your `environment/development.rb`:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = { :host => "localhost", :port => 1025 }
config.action_mailer.smtp_settings = { :address => "localhost", :port => 1025 }
### PHP