Another php form problem

Hello
I’m doing a form in flash and send it with php, it works and send the form but the e-mail from the sender is not dispalyed correcly…

here is my php code:

<?php
$sendTo = "[email protected]";
$subject = "Frase de Natal";
$nome = $_POST['nome'];
$email = $_POST['email'];
$cargo = $_POST['cargo'];
$empresa = $_POST['empresa'];
$frase = $_POST['frase'];
$headers  = "MIME-Version: 1.0
";
$headers .= "Content-type: text/html; charset=iso-8859-1
";
$headers .= "From: " . $_POST["nome"]"
"; 
$headers .= "<" . $_POST["email"] . ">
"; 
$headers .= "Reply-To: " . $_POST["email"] . "
"; 
$headers .= "Return-Path: " . $_POST["email"]; 
 
$message = "Frase Postal de Natal 
";
$message.= "
<html>
<head>
<title>Untitled Document</title>
<style type=\"text/css\">
<!--
.style1 {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 12px;
}
.style2 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; }
-->
</style>
</head>
<body bgcolor=\"ffffff\">
<p><strong>Nome:</strong> $nome <strong><br/>
  Email:</strong> $email<strong><br />
  Cargo:</strong> $cargo<strong><br />
  Empresa:</strong> $empresa<strong><br />
  Frase:</strong> $frase<strong><br />
  </strong></p>
</body>
</html>
";
mail($sendTo, $subject, $message, $headers);
?>

the email sent has this on the headers:

To: [EMAIL="[email protected]"][email protected][/EMAIL] Subject: Frase de Natal
From: <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"Verdana\" SIZE=\"10\" COLOR=\"#EB211F\" LETTERSPACING=\"0\" KERNING=\"0\">rogério12345678</FONT></P></TEXTFORMAT><<TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"Verdana\" SIZE=\"10\" COLOR=\"#EB211F\" LETTERSPACING=\"0\" KERNING=\"0\">[email protected]</FONT></P></TEXTFORMAT>>
Reply-To: <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"Verdana\" SIZE=\"10\" COLOR=\"#EB211F\" LETTERSPACING=\"0\" KERNING=\"0\">[email protected]</FONT></P></TEXTFORMAT>