25 lines
562 B
PHP
25 lines
562 B
PHP
<?php
|
|
return [
|
|
|
|
'default' => env('MAIL_MAILER', 'smtp'),
|
|
|
|
'mailers' => [
|
|
'smtp' => [
|
|
'transport' => 'smtp',
|
|
'host' => env('MAIL_HOST', 'smtp.gmail.com'),
|
|
'port' => env('MAIL_PORT', 587),
|
|
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
|
'username' => env('MAIL_USERNAME'),
|
|
'password' => env('MAIL_PASSWORD'),
|
|
'timeout' => null,
|
|
'auth_mode' => null,
|
|
],
|
|
],
|
|
|
|
'from' => [
|
|
'address' => env('MAIL_FROM_ADDRESS', 'terratech5959@gmail.com'),
|
|
'name' => env('MAIL_FROM_NAME', 'Example'),
|
|
],
|
|
|
|
];
|