This is my code:
<?php
$to = "you@example.com";
$subject = "This is the subject!";
$message = "This is the message!";
$headers = 'From: Me<me@example.com>' . "\r\n";
$headers .= 'Bcc: me@example.com' . "\r\n";
mail($to,$subject,$message,$headers);
?>
Unfortunately I'm not getting the Bcc email. Why that? What am I doing wrong?