8000 bug #35518 [Mailer] Fix STARTTLS support for Postmark and Mandrill (f… · symfony/symfony@6b0103e · GitHub
[go: up one dir, main page]

Skip to content

Commit 6b0103e

Browse files
committed
bug #35518 [Mailer] Fix STARTTLS support for Postmark and Mandrill (fabpot)
This PR was merged into the 4.4 branch. Discussion ---------- [Mailer] Fix STARTTLS support for Postmark and Mandrill | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | yes | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tickets | Fix #34846 <!-- prefix each issue number with "Fix #", if any --> | License | MIT | Doc PR | n/a Commits ------- 44b27c6 [Mailer] Fix STARTTLS support for Postmark and Mandrill
2 parents 737a3e5 + 44b27c6 commit 6b0103e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/Mailer/Bridge/Mailchimp/Transport/MandrillSmtpTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class MandrillSmtpTransport extends EsmtpTransport
2222
{
2323
public function __construct(string $username, string $password, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
2424
{
25-
parent::__construct('smtp.mandrillapp.com', 587, true, $dispatcher, $logger);
25+
parent::__construct('smtp.mandrillapp.com', 587, false, $dispatcher, $logger);
2626

2727
$this->setUsername($username);
2828
$this->setPassword($password);

src/Symfony/Component/Mailer/Bridge/Postmark/Transport/PostmarkSmtpTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class PostmarkSmtpTransport extends EsmtpTransport
2626
{
2727
public function __construct(string $id, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
2828
{
29-
parent::__construct('smtp.postmarkapp.com', 587, true, $dispatcher, $logger);
29+
parent::__construct('smtp.postmarkapp.com', 587, false, $dispatcher, $logger);
3030

3131
$this->setUsername($id);
3232
$this->setPassword($id);

0 commit comments

Comments
 (0)
0