[Mailer] Fix SMTP Authentication when using STARTTLS

This commit is contained in:
Vivien 2019-12-02 17:13:01 +01:00
parent f75e9d583c
commit 75b54542ab

View File

@ -115,6 +115,7 @@ class EsmtpTransport extends SmtpTransport
try {
$response = $this->executeCommand(sprintf("EHLO %s\r\n", $this->getLocalDomain()), [250]);
$capabilities = $this->getCapabilities($response);
} catch (TransportExceptionInterface $e) {
parent::doHeloCommand();