Browse Source

Added "pretend" option to mail config.

Taylor Otwell 11 years ago
parent
commit
e526c08800
1 changed files with 14 additions and 1 deletions
  1. 14 1
      app/config/mail.php

+ 14 - 1
app/config/mail.php

@@ -108,4 +108,17 @@ return array(
 
 
 	'sendmail' => '/usr/sbin/sendmail -bs',
 	'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,
+
+);