I am trying to edit this script to send a Bcc copy to myself:
$to = $your_email;
$from = \"Server Xt\";
$subject = \"User Sent M
it looks the order of header is important!!!
$from = "Sender Name";
$to="receiver@stackoverflow.com";
$headers = "From: $from\r\n";
$headers .= "To: $to\r\n";
$headers .= "Return-Path: <".$to.">\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Bcc:email@gmail.com\r\n";
$headers .= "Content-Type: text/HTML; charset=ISO-8859-1\r\n";