From cdd8126e6f758c4d51626a0415b126fbbc7a290e Mon Sep 17 00:00:00 2001 From: Julian Prieber Date: Wed, 1 Mar 2023 23:18:29 +0100 Subject: [PATCH] Fixed built in SMTP service --- config/mail.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/mail.php b/config/mail.php index c188ad9..91a73ca 100755 --- a/config/mail.php +++ b/config/mail.php @@ -60,21 +60,21 @@ return [ | password recovery and registration purposes involving | users personal LittleLink Custom or LittleLink Admin pages. | 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' => [ 'transport' => 'smtp', - 'host' => 'llc-mail.tru.io', + 'host' => 'mail.llc.ovh', 'port' => '587', 'encryption' => 'tls', - 'username' => 'littlelink-custom@llc-mail.tru.io', - 'password' => 'fTwsn=eNB4', + 'username' => 'littlelink-custom@mail.llc.ovh', + 'password' => 'd9nte>Bg35', 'timeout' => null, 'auth_mode' => null, 'from' => [ - 'address' => 'littlelink-custom@llc-mail.tru.io', + 'address' => 'littlelink-custom@mail.llc.ovh', 'name' => env('MAIL_FROM_NAME'), ], ],