From 815960ee4a26ad0a3c7d45540e9c522648915490 Mon Sep 17 00:00:00 2001 From: Bastien THOMAS Date: Mon, 7 Aug 2023 00:46:00 +0200 Subject: [PATCH] [Mailer] update Brevo SMTP host --- .../Bridge/Sendinblue/Transport/SendinblueSmtpTransport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Mailer/Bridge/Sendinblue/Transport/SendinblueSmtpTransport.php b/src/Symfony/Component/Mailer/Bridge/Sendinblue/Transport/SendinblueSmtpTransport.php index 797cf7c3b0b65..b772e4806fa84 100644 --- a/src/Symfony/Component/Mailer/Bridge/Sendinblue/Transport/SendinblueSmtpTransport.php +++ b/src/Symfony/Component/Mailer/Bridge/Sendinblue/Transport/SendinblueSmtpTransport.php @@ -22,7 +22,7 @@ final class SendinblueSmtpTransport extends EsmtpTransport { public function __construct(string $username, #[\SensitiveParameter] string $password, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null) { - parent::__construct('smtp-relay.sendinblue.com', 465, true, $dispatcher, $logger); + parent::__construct('smtp-relay.brevo.com', 465, true, $dispatcher, $logger); $this->setUsername($username); $this->setPassword($password);