From 101ed23c5c5d502d3acc1d9075e1492b2229dd84 Mon Sep 17 00:00:00 2001 From: Marius Cramer Date: Thu, 6 Feb 2014 09:42:48 +0100 Subject: [PATCH] Removed Bcc header from mailer class --- interface/lib/classes/ispcmail.inc.php | 1 - 1 file changed, 1 deletion(-) diff --git a/interface/lib/classes/ispcmail.inc.php b/interface/lib/classes/ispcmail.inc.php index 7943c2c735..c0803f0bea 100644 --- a/interface/lib/classes/ispcmail.inc.php +++ b/interface/lib/classes/ispcmail.inc.php @@ -794,7 +794,6 @@ class ispcmail { $mail_content = 'Subject: ' . $enc_subject . $this->_crlf; $mail_content .= 'To: ' . $this->getHeader('To') . $this->_crlf; - if($this->getHeader('Bcc') != '') $mail_content .= 'Bcc: ' . $this->_encodeHeader($this->getHeader('Bcc'), $this->mail_charset) . $this->_crlf; if($this->getHeader('Cc') != '') $mail_content .= 'Cc: ' . $this->_encodeHeader($this->getHeader('Cc'), $this->mail_charset) . $this->_crlf; $mail_content .= implode($this->_crlf, $headers) . $this->_crlf . ($this->_is_signed == false ? $this->_crlf : '') . $this->body; -- GitLab