hi, i recently learned how to make a php contact form for flash websites, i got it working and everything, the only problem is, whenever i try to test it and send an email, the text is all jumbled with code in the email i receive, it looks like its text formatting code or something, here is the php code im using:
<?
$SenderEmailAddr = $_POST[‘email’];
$Subject = "Marena Studios Information Request";
$SenderName = $_POST['name'];
$EMailAddr = "radicaldreamr@gmail.com";
$FromAddr = "FROM: " . $SenderName;
$MailContent = " Name: " . $_POST['name'] . "
";
$MailContent .= " Home Phone: " . $_POST[‘phone’] . "
";
$MailContent .= " EMail Address: " . $_POST[‘email’] . "
";
$MailContent .= " Message: " . $_POST[‘message’] . "
";
mail($EMailAddr, $Subject, $MailContent, $FromAddr);
// Automatic Response
$Subject = "Marena Studios Information Request Auto-response";
$SenderEmailAddr = $_POST['email'];
$EMailAddr = $SenderEmailAddr;
$FromAddr = "FROM: Marena Studios";
$MailContent = "Thank you for your interest in Marena Studios." . "
";
$MailContent .= “We will contact you shortly.”;
mail($EMailAddr, $Subject, $MailContent, $FromAddr);
// echo “&mail_sent=true”;
?>
and here is what the email i get looks like :
Name: <TEXTFORMAT LEADING=\"1\"><P ALIGN=\"LEFT\"><FONT FACE=\"RotisSemiSans Bold\" SIZE=\"12\" COLOR=\"#666666\" LETTERSPACING=\"0\" KERNING=\"0\">Michael</FONT></P></TEXTFORMAT>
Home Phone: <TEXTFORMAT LEADING=\"1\"><P ALIGN=\"LEFT\"><FONT FACE=\"RotisSemiSans Bold\" SIZE=\"12\" COLOR=\"#666666\" LETTERSPACING=\"0\" KERNING=\"0\">223-2332</FONT></P></TEXTFORMAT>
Message: <TEXTFORMAT LEADING=\"1\"><P ALIGN=\"LEFT\"><FONT FACE=\"RotisSemiSans Bold\" SIZE=\"12\" COLOR=\"#666666\" LETTERSPACING=\"0\" KERNING=\"0\">testing testing testing</FONT></P></TEXTFORMAT>
if anyone can tell me howto fix i would grealy appreciate it