resulta que tengo un codigo php para mails anonimos que este este
<link rel="stylesheet" type="text/css" href="style.css">
<meta http-equiv="Content-Language" content="es">
<form method="POST" action="anonimo.php">
<p align="center">
Tu eMail:
<input type="text" name="email" size="20"><br>
Tu nombre:
<input type="text" name="nombre" size="20"><br>
Para (eMail): <input type="text" name="para" size="20"><br>
Asunto:
<input type="text" name="asunto" size="20"><br>
<br>
Mensaje<br>
<textarea rows="4" name="comentarios" cols="36"></textarea><br>
<br>
<input type="submit" value="Enviar" name="B1">
<input type="reset" value="Borrar todo" name="B2"></p>
</form>
<?
$nombre = $_REQUEST["nombre"];
$remitente = $_REQUEST["email"];
$mensaje = $_REQUEST["comentarios"];
$asunto = $_REQUEST["asunto"];
$para = $_REQUEST["para"];
$headers = 'From: "'.$nombre.'" <'.$remitente.'>' . "\r\n";
$headers .= 'X-Mailer: PHP /'. phpversion(). "\ r \ n";
$headers .= 'MIME-Version: 1.0'. "\ r \ n";
$headers .= 'Content-Type: text / html; charset = UTF-8';
mail("$para", $asunto, $mensaje, $headers);
?>
<meta http-equiv="Content-Language" content="es">
<form method="POST" action="anonimo.php">
<p align="center">
Tu eMail:
<input type="text" name="email" size="20"><br>
Tu nombre:
<input type="text" name="nombre" size="20"><br>
Para (eMail): <input type="text" name="para" size="20"><br>
Asunto:
<input type="text" name="asunto" size="20"><br>
<br>
Mensaje<br>
<textarea rows="4" name="comentarios" cols="36"></textarea><br>
<br>
<input type="submit" value="Enviar" name="B1">
<input type="reset" value="Borrar todo" name="B2"></p>
</form>
<?
$nombre = $_REQUEST["nombre"];
$remitente = $_REQUEST["email"];
$mensaje = $_REQUEST["comentarios"];
$asunto = $_REQUEST["asunto"];
$para = $_REQUEST["para"];
$headers = 'From: "'.$nombre.'" <'.$remitente.'>' . "\r\n";
$headers .= 'X-Mailer: PHP /'. phpversion(). "\ r \ n";
$headers .= 'MIME-Version: 1.0'. "\ r \ n";
$headers .= 'Content-Type: text / html; charset = UTF-8';
mail("$para", $asunto, $mensaje, $headers);
?>
cuando envio mail anonimos llegan a la perfecccion al correo de gmail pero no llegan a hotmail me gustaria que me orientaran que que le debo de agregar modificar o quitar al codigo para que los mensajes que envio lleguen a la bandeja de hotmail
de antemano muchas gracias por su ayuda y quedo a la espera de una pronta respuesta