15 lines
383 B
PHP
15 lines
383 B
PHP
<?php
|
|
|
|
return [
|
|
'default' => env('MAIL_MAILER', 'log'),
|
|
'mailers' => [
|
|
'log' => ['transport' => 'log'],
|
|
'array' => ['transport' => 'array'],
|
|
'failover' => ['transport' => 'failover', 'mailers' => ['log']],
|
|
],
|
|
'from' => [
|
|
'address' => env('MAIL_FROM_ADDRESS', 'fox@localhost'),
|
|
'name' => env('MAIL_FROM_NAME', 'Fox'),
|
|
],
|
|
];
|