mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 07:30:09 +00:00
ce21ae24db
Co-authored-by: Shift <shift@laravelshift.com>
28 lines
711 B
PHP
28 lines
711 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'mailers' => [
|
|
'smtp' => [
|
|
'transport' => 'smtp',
|
|
'url' => env('MAIL_URL'),
|
|
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
|
|
'port' => env('MAIL_PORT', 587),
|
|
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
|
'username' => env('MAIL_USERNAME'),
|
|
'password' => env('MAIL_PASSWORD'),
|
|
'timeout' => null,
|
|
'local_domain' => env('MAIL_EHLO_DOMAIN'),
|
|
'verify_peer' => env('MAIL_VERIFY_SSL', true),
|
|
],
|
|
|
|
'mailgun' => [
|
|
'transport' => 'mailgun',
|
|
// 'client' => [
|
|
// 'timeout' => 5,
|
|
// ],
|
|
],
|
|
],
|
|
|
|
];
|