From e526c088005409a360bd844d0382a26b04c2f2cf Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 8 Jun 2013 13:14:10 -0500 Subject: [PATCH] Added "pretend" option to mail config. --- app/config/mail.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/app/config/mail.php b/app/config/mail.php index eb9e6406b40..a7151a06740 100644 --- a/app/config/mail.php +++ b/app/config/mail.php @@ -108,4 +108,17 @@ 'sendmail' => '/usr/sbin/sendmail -bs', -); + /* + |-------------------------------------------------------------------------- + | Mail "Pretend" + |-------------------------------------------------------------------------- + | + | When this option is enabled, e-mail will not actually be sent over the + | web and will instead be written to your application's logs files so + | you may inspect the message. This is great for local development. + | + */ + + 'pretend' => false, + +); \ No newline at end of file