I am using below code for sending mail with cc and bcc.
$headers="From: $name <{$fromAddress}>
".
"Reply-To: info@test.com
".
"Cc: abc@gmail.com
".
"BCC: pqr@gmail.com
".
"MIME-Version: 1.0
".
"Content-type: text/html; charset=UTF-8";
@mail($toAddres,$subject,$message,$headers,$parameters);
All the things are working fine including reply-to, cc but the bcc is not working.
In the mailbox headers, it is not showing me the bcc mail address. What do I need to fix it?