Marius Cramer
2014-02-06 101ed23c5c5d502d3acc1d9075e1492b2229dd84
Removed Bcc header from mailer class
1 files modified
1 ■■■■ changed files
interface/lib/classes/ispcmail.inc.php 1 ●●●● patch | view | raw | blame | history
interface/lib/classes/ispcmail.inc.php
@@ -794,7 +794,6 @@
                $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;