I'm using WP 3.3.1
I am trying to add BCC onto the headers of an email I'm sending out, but the BCC is not being added.
public $from = "sender@example.com";
public $replyTo = "sender@example.com";
public $bcc = "bccaddress@example.com";
$headers['From'] = "From: ".$this->from;
$headers['Reply-To'] = "Reply-To: ".$this->replyTo;
$headers['Bcc'] = "Bcc: ".$this->bcc;
wp_mail("example@example.com", "My Subject Line" , $html, $headers);
I've looked at this article, which says the problem was suppose to be fixed in WP 3.2...but for me, it's still not working.
I am using a local SMTP server application called Papercut to monitor the emails that are being sent.

wp_mail(array($replyTo, $bcc), "My Subject Line" , $html, $headers);- You can even add more if you want... hope this helps :) – Sagive SEO Mar 20 '12 at 22:17