Fix regresssion. The reply_to was missing with SMTPS

This commit is contained in:
Laurent Destailleur 2020-08-31 17:07:13 +02:00
parent 0442ed1bd1
commit 0a93954134

View File

@ -358,7 +358,7 @@ class CMailFile
$smtps->setTO($this->getValidAddress($this->addr_to, 0, 1));
$smtps->setFrom($this->getValidAddress($this->addr_from, 0, 1));
$smtps->setTrackId($this->trackid);
$smtps->setReplyTo($this->getValidAddress($this->replyto, 0, 1));
$smtps->setReplyTo($this->getValidAddress($this->reply_to, 0, 1));
if (!empty($moreinheader)) $smtps->setMoreInHeader($moreinheader);