I am still learning so bear with me if this is easy to do.
I send an email to the users confirming what they have entered and want to send a blind copy to myself to make sure it has been inserted into the database and to keep them for record purposes. The code I am using is below, the email goes to the user but I do not recieve an email myself.
Can someone check my code and see what is wrong.
$subject = "Record of details confirmed";
$headers = 'From: example@example.com' . "\r\n" . 'Reply-To: example2@example.org' . "\r\n" . 'X-Mailer: PHP/' . phpversion();
$headers .= "\r\n" . 'Bcc:*example3@example.net';
$fullmessage = 'Message from: Office' . "\n\n" . 'To: ' . $fname . " " . $sname . "\n\n" ;
mail( $email, $subject, $fullmessage, $headers) ;
Thanks
Tuscan