I am trying to edit this script to send a Bcc copy to myself:
$to = $your_email; $from = \"Server Xt\"; $subject = \"User Sent M
Is $headers .= "Bcc:email@example.com"\n" the exact syntax that you are using?
$headers .= "Bcc:email@example.com"\n"
You should be receiving an error if so as that isn't valid PHP syntax.
Try changing to something like $headers .= 'Bcc:email@example.com' . "\r\n";
$headers .= 'Bcc:email@example.com' . "\r\n";