X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/6fa093d9d0a2073e872ce545b87ef2eb1b35a99b..refs/pull/2700/head:/app/Config/mail.php diff --git a/app/Config/mail.php b/app/Config/mail.php index 49407bd8e..abdbd382c 100644 --- a/app/Config/mail.php +++ b/app/Config/mail.php @@ -11,7 +11,7 @@ return [ // Mail driver to use. - // Options: smtp, mail, sendmail, log + // Options: smtp, sendmail, log, array 'driver' => env('MAIL_DRIVER', 'smtp'), // SMTP host address @@ -23,7 +23,7 @@ return [ // Global "From" address & name 'from' => [ 'address' => env('MAIL_FROM', 'mail@bookstackapp.com'), - 'name' => env('MAIL_FROM_NAME','BookStack') + 'name' => env('MAIL_FROM_NAME', 'BookStack') ], // Email encryption protocol @@ -46,4 +46,10 @@ return [ ], ], + // Log Channel + // If you are using the "log" driver, you may specify the logging channel + // if you prefer to keep mail messages separate from other log entries + // for simpler reading. Otherwise, the default channel will be used. + 'log_channel' => env('MAIL_LOG_CHANNEL'), + ];