Gentlemen my problem is as follows
I have a php code to send anonymous mail send CUNADO it works perfectly for gmail yahoo and others
but when I send this to a hotmail mail not even fails as span
my question is should I add to the code so that messages correctly llguen to hotmail inbox
Here is the code php
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"];
mail("$para", $asunto, $mensaje, "From: $remitente $nombre")
?>
many thanks in advance I expect an answer