the version below works fine but has no HTML if I insert <a> tags around QUALIFY NOW and create a hyperlink to the site, all efforts of mine print <a href="
www.Thesite.com/qualify">QUALIFY NOW</a> in the email, and yes before you ask I am escaping the quotes with \ so pse pse someone help...while I still have some hair
// build the friend's email...
$to = "$email";
$subject = "BIOTRAX ELIGIBILITY TEST $sender";
$body ="BIOTRAX ELIGIBILITY TESTING\r\n\r\nMessage from $sender: $note\r\n\r\nMAKE BETTER USE OF YOUR SPARE TIME.\r\n\r\nREGISTERING WITH US, THE ONLY UNITY OF VOLUNTEERS IN THE WORLD\r\n\r\nSEE IF YOU QUALIFY NOW\r\nBY CLICKING ON THIS LINK:
http://www.Thesite.com/qualify\r\n";
$message="$body";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers = "From: $sender <$sender_email>\n";
$headers .= "Reply-To: <$sender_email>\n";
$headers .= "Return-Path: <$sender_email>\n";
// end email building..
// send the mail..
mail($to,$subject,$message,$headers);