We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93ef006 commit 101ed23Copy full SHA for 101ed23
interface/lib/classes/ispcmail.inc.php
@@ -794,7 +794,6 @@ public function send($recipients) {
794
795
$mail_content = 'Subject: ' . $enc_subject . $this->_crlf;
796
$mail_content .= 'To: ' . $this->getHeader('To') . $this->_crlf;
797
- if($this->getHeader('Bcc') != '') $mail_content .= 'Bcc: ' . $this->_encodeHeader($this->getHeader('Bcc'), $this->mail_charset) . $this->_crlf;
798
if($this->getHeader('Cc') != '') $mail_content .= 'Cc: ' . $this->_encodeHeader($this->getHeader('Cc'), $this->mail_charset) . $this->_crlf;
799
$mail_content .= implode($this->_crlf, $headers) . $this->_crlf . ($this->_is_signed == false ? $this->_crlf : '') . $this->body;
800
0 commit comments