Flash PHP Email , Hide Formatting in end-user Email?

Hello and thanks for taking the time,

I built a Flash email sender, its very simple, it just sends all the variables in the fields, no cross checks or nothing.

Problem: here’s what the end-user email looks like:

Subject: Message from <TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE="_sans" SIZE=“14” COLOR="#000000" LETTERSPACING=“0” KERNING=“0”>Smiles</FONT></P></TEXTFORMAT>

Name : <TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE="_sans" SIZE=“14” COLOR="#000000" LETTERSPACING=“0” KERNING=“0”>Smiles</FONT></P></TEXTFORMAT>

Email:

Comments: <TEXTFORMAT LEADING=“2”><P ALIGN=“LEFT”><FONT FACE="_sans" SIZE=“14” COLOR="#000000" LETTERSPACING=“0” KERNING=“0”>Massage</FONT></P></TEXTFORMAT>

Here’s my PHP code:

<?

$destination="[email protected]";
$name=$_POST[‘name’];
$subject=$_POST[‘subject’];
$mes=$_POST[‘message’];
$subject=“Message from $name” ;
$mes="Name : $name

Email: $email

Comments: $mes
";
mail($destination,$subject,$mes); ?>

To anyone that helps me tackle this pickle I bid you a million thanks