I am using WordPress 3.1.3
I am getting following notices when I use wp_mail with cc and bcc headers.
Notice: Undefined variable: cc in /var/www/mysite.info/htdocs/wordpress/wp-includes/pluggable.php on line 349
Notice: Undefined variable: bcc in /var/www/mysite.info/htdocs/wordpress/wp-includes/pluggable.php on line 352
This is how I am setting email headers
$email_headers = "From: ".$from_field_value.PHP_EOL;
$email_headers .= "Reply-To: ".$from_field_value.PHP_EOL;
$email_headers .= "CC: mail@gmail.com".PHP_EOL;
$email_headers .= "BCC: mail@gmail.com".PHP_EOL;
if (wp_mail($email_to, $email_subject, $email_body, $email_headers)) {
// Other process
}