From 7fe655fdac91f5eba18bee37a36351cb5202e8dc Mon Sep 17 00:00:00 2001 From: Samuel Cochran Date: Wed, 10 Aug 2016 10:03:23 +1000 Subject: [PATCH] Recommend turning off raise delivery errors Folks may not always want MailCatcher running, and don't want errors raised during mail delivery if it's not. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e749269..7267239 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ To set up your rails app, I recommend adding this to your `environments/developm config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address => "localhost", :port => 1025 } + config.action_mailer.raise_delivery_errors = false ### PHP