SO I was following Sen’s tutorial on making a really simple and easy Flash email form, but when I actually sent something, this is what the body and headers looked like:
Name: <TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE=“FFF Harmony_8pt_st” SIZE=“8” COLOR="#C3C3C3" LETTERSPACING=“0” KERNING=“1”>Ghoulash</FONT></P></TEXTFORMAT>
Email: <TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE=“FFF Harmony_8pt_st” SIZE=“8” COLOR="#C3C3C3" LETTERSPACING=“0” KERNING=“1”>ghoulash@ghoulash.com</FONT></P></TEXTFORMAT>
<TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE=“FFF Harmony_8pt_st” SIZE=“8” COLOR="#C3C3C3" LETTERSPACING=“0” KERNING=“1”>Hey look! This form actually works! Congratulations!</FONT></P></TEXTFORMAT>
That was the body. Because I just altered the $message variable to this:
$message = "Name: " . $_POST[“name”] . "
" . "Email: " . $_POST[“email”] . "
" . $_POST[“body”];
Edit:// fixed