Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Mailer] Update default Mailjet port
  • Loading branch information
Katario committed Nov 12, 2023
commit 1799ed2bb9556053d28e53a88bf7269310de524a
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class MailjetSmtpTransport extends EsmtpTransport
{
public function __construct(string $username, #[\SensitiveParameter] string $password, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
{
parent::__construct('in-v3.mailjet.com', 465, true, $dispatcher, $logger);
parent::__construct('in-v3.mailjet.com', 587, true, $dispatcher, $logger);

$this->setUsername($username);
$this->setPassword($password);
Expand Down
1 change: 1 addition & 0 deletions src/Symfony/Component/Mailer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CHANGELOG
---

* Add DSN parameter `peer_fingerprint` to verify TLS certificate fingerprint
* Change the default port for the `mailjet+smtp` transport from 465 to 587

6.3
---
Expand Down