Merge pull request #7149 from firefly-iii/mail-provider

Make sure default mail provider is "log", not smtp
This commit is contained in:
James Cole
2023-03-06 05:53:11 +01:00
committed by GitHub

View File

@@ -33,7 +33,7 @@ return [
| and used as needed; however, this mailer will be used by default.
|
*/
'default' => env('MAIL_MAILER', 'smtp'),
'default' => envNonEmpty('MAIL_MAILER', 'log'),
'mailers' => [
'smtp' => [
@@ -54,7 +54,7 @@ return [
'mailgun' => [
'transport' => 'mailgun',
],
'mandrill' => [
'transport' => 'mandrill',
],