From 8833a7448fc13d04e1d4a5a11e8a63d904640d63 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 13 Sep 2019 14:30:55 +0200 Subject: [PATCH] * Notification: instead of overwritting From address use ReplyTo as mail provider might not allow to have a From different from envelope sender --- .../inc/class.notifications_email.inc.php | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/notifications/inc/class.notifications_email.inc.php b/notifications/inc/class.notifications_email.inc.php index 7c9d69a8bb..615f748f20 100644 --- a/notifications/inc/class.notifications_email.inc.php +++ b/notifications/inc/class.notifications_email.inc.php @@ -86,7 +86,7 @@ class notifications_email implements notifications_iface { * @param string $_subject * @param array $_links * @param array $_attachments - * @param array $_data + * @param array $_data value for key "reply_to" to use a custom ReplyTo address */ public function send(array $_messages, $_subject = false, $_links = false, $_attachments = false, $_data = false) { @@ -102,10 +102,14 @@ class notifications_email implements notifications_iface { //$this->mail->AddHeader('X-EGroupware-Tracker', 'notification-mail'); //error_log(__METHOD__.__LINE__."preparing notification message via email.".array2string($this->mail)); - $this->mail->setFrom($this->sender->account_email, $this->sender->account_fullname); - - if ( $_data && isset( $_data['reply_to'] ) ) { - $this->mail->addAddress($_data['reply_to'], '', 'replyto'); + if ( $_data && !empty( $_data['reply_to'] ) ) + { + $this->mail->addReplyTo($_data['reply_to']); + } + // do NOT set sender as From, as this might not be allowed, set it instead as ReplyTo, if that one it not explicitly set already + elseif ($this->mail->getHeader('From') != Api\Mailer::add_personal($this->sender->account_email, $this->sender->account_fullname)) + { + $this->mail->addReplyTo($this->sender->account_email, $this->sender->account_fullname); } $this->mail->addHeader('Subject', trim($_subject)); // trim the subject to avoid strange wrong encoding problem