Skip to content

Commit 649c8a1

Browse files
bug #51119 [Mailer] update the Brevo SMTP host (xabbuh)
This PR was merged into the 6.4 branch. Discussion ---------- [Mailer] update the Brevo SMTP host | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix #51118 | License | MIT | Doc PR | see https://developers.brevo.com/docs/changes-in-smtp-relay-address Commits ------- 5662858 update the Brevo SMTP host
2 parents c612bfc + 5662858 commit 649c8a1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Symfony/Component/Mailer/Bridge/Brevo/Transport/BrevoSmtpTransport.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ final class BrevoSmtpTransport extends EsmtpTransport
2222
{
2323
public function __construct(string $username, #[\SensitiveParameter] string $password, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
2424
{
25-
// This is not a typo: For now the smtp relay is still under sendinblue.com unlike the api.
26-
parent::__construct('smtp-relay.sendinblue.com', 465, true, $dispatcher, $logger);
25+
parent::__construct('smtp-relay.brevo.com', 465, true, $dispatcher, $logger);
2726

2827
$this->setUsername($username);
2928
$this->setPassword($password);

0 commit comments

Comments
 (0)