From 79e3aab4a6978d7fe73b5e96d5d0eb7f1c62ebab Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 24 May 2013 09:24:46 -0500 Subject: [PATCH] Added sendmail path config option. --- app/config/mail.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/config/mail.php b/app/config/mail.php index 7b7dff67..2b490a8e 100644 --- a/app/config/mail.php +++ b/app/config/mail.php @@ -95,4 +95,17 @@ 'password' => null, + /* + |-------------------------------------------------------------------------- + | Sendmail System Path + |-------------------------------------------------------------------------- + | + | When using the "sendmail" driver to send e-mails, we will need to know + | the path to where Sendmail lives on this server. A default path has + | been provided here, which will work well on most of your systems. + | + */ + + 'sendmail' => '/usr/sbin/sendmail', + );