Skip to content

Commit

Permalink
Merge pull request #25 from kimptoc/patch-1
Browse files Browse the repository at this point in the history
amended rails config, smtp_settings is :address, not :host (at least und...
  • Loading branch information
sj26 committed Dec 22, 2011
2 parents 0a083c0 + e4eb099 commit 1b4ab9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 1b4ab9f

Please sign in to comment.