From 2d649afd4fdab7798ca1422bbf1355a935349005 Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Mon, 2 Dec 2024 13:59:36 +0100 Subject: [PATCH] Fixes ACCOUNTS-BF. Fix smtp transport configuration --- common/config/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config/config.php b/common/config/config.php index 48d0782..b45d292 100644 --- a/common/config/config.php +++ b/common/config/config.php @@ -59,7 +59,7 @@ return [ 'class' => yii\symfonymailer\Mailer::class, 'viewPath' => '@common/mail', 'transport' => [ - 'class' => Symfony\Component\Mailer\Transport\Smtp\SmtpTransport::class, + 'scheme' => 'smtp', 'host' => getenv('SMTP_HOST'), 'username' => getenv('SMTP_USER'), 'password' => getenv('SMTP_PASS'),