From 7ec922fdf5817750c29bcb1748e50d799db2eb00 Mon Sep 17 00:00:00 2001 From: alecpl Date: Thu, 1 May 2008 14:27:48 +0000 Subject: - Fix BCC header reset (#1484997) --- program/steps/mail/func.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'program/steps/mail') diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 9a81a00ec..1c1a4c6e7 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1419,10 +1419,12 @@ function rcmail_deliver_message(&$message, $from, $mailto) // clean Bcc from header for recipients $send_headers = $headers; unset($send_headers['Bcc']); + // here too, it because txtHeaders() below use $message->_headers not only $send_headers + unset($message->_headers['Bcc']); // send message $smtp_response = array(); - $sent = smtp_mail($from, $a_recipients, ($foo = $message->txtHeaders($send_headers)), $msg_body, $smtp_response); + $sent = smtp_mail($from, $a_recipients, ($foo = $message->txtHeaders($send_headers, true)), $msg_body, $smtp_response); // log error if (!$sent) -- cgit v1.2.3