Fixed built in SMTP service

This commit is contained in:
Julian Prieber 2023-03-01 23:18:29 +01:00
parent 27ffc29212
commit cdd8126e6f

View File

@ -60,21 +60,21 @@ return [
| password recovery and registration purposes involving | password recovery and registration purposes involving
| users personal LittleLink Custom or LittleLink Admin pages. | users personal LittleLink Custom or LittleLink Admin pages.
| Users of this service must abide by our Terms and Conditions | Users of this service must abide by our Terms and Conditions
| found at https://llc-mail.tru.io/. | found at https://littlelink-custom.com/mail.
| |
*/ */
'built-in' => [ 'built-in' => [
'transport' => 'smtp', 'transport' => 'smtp',
'host' => 'llc-mail.tru.io', 'host' => 'mail.llc.ovh',
'port' => '587', 'port' => '587',
'encryption' => 'tls', 'encryption' => 'tls',
'username' => 'littlelink-custom@llc-mail.tru.io', 'username' => 'littlelink-custom@mail.llc.ovh',
'password' => 'fTwsn=eNB4', 'password' => 'd9nte>Bg35',
'timeout' => null, 'timeout' => null,
'auth_mode' => null, 'auth_mode' => null,
'from' => [ 'from' => [
'address' => 'littlelink-custom@llc-mail.tru.io', 'address' => 'littlelink-custom@mail.llc.ovh',
'name' => env('MAIL_FROM_NAME'), 'name' => env('MAIL_FROM_NAME'),
], ],
], ],