From 6b9cbb197fe8d7327246d5cdfa3510a5a0708da0 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 27 Jan 2015 07:56:27 +0000 Subject: [PATCH] * Mail: fix not working BCC addresses --- phpgwapi/inc/class.egw_mailer.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpgwapi/inc/class.egw_mailer.inc.php b/phpgwapi/inc/class.egw_mailer.inc.php index fb899cbe65..c617f331bf 100644 --- a/phpgwapi/inc/class.egw_mailer.inc.php +++ b/phpgwapi/inc/class.egw_mailer.inc.php @@ -705,6 +705,8 @@ class egw_mailer extends Horde_Mime_Mail { switch($name) { + case '_bcc': + $this->_bcc = $value; // this is NOT PHPMailer compatibility, but need for working BCC, if $this->_bcc is NOT set case 'Sender': $this->addHeader('Return-Path', '<'.$value.'>', true); break;