Skip to content
Snippets Groups Projects
Commit b03f1f0b authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #10804 TIME 0:15 phpmailer set autotls to false

parent 0fd66b67
No related branches found
No related tags found
No related merge requests found
...@@ -256,6 +256,7 @@ class EmailController ...@@ -256,6 +256,7 @@ class EmailController
$phpmailer->Host = $configuration['host']; $phpmailer->Host = $configuration['host'];
$phpmailer->Port = $configuration['port']; $phpmailer->Port = $configuration['port'];
$phpmailer->SMTPAutoTLS = false;
if (!empty($configuration['secure'])) { if (!empty($configuration['secure'])) {
$phpmailer->SMTPSecure = $configuration['secure']; $phpmailer->SMTPSecure = $configuration['secure'];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment