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"> 
&nbsp;&nbsp;&nbsp;&nbsp; 
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> 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Asunto:&nbsp; 
<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

    are you trying to send mails from the php script called anonimo.php of which the sample shown is most of the code?

    probably the 'from' component is not including the domain the mail is being sent from, so it is being marked as spam

    in other words you appear to be sending spam and trying to disguise it !

    (if you really are sending the block of code as email ..:
    dont attempt to send a form in an email
    Microsoft Outlook for one no longer supports that so I expect hotmail is the same
    you cant link to an external stylesheet in an email - all styling must be inline html )

      cretaceous wrote:

      (if you really are sending the block of code as email ..:

      It's doubtful, since a) the e-mail being sent is text only (not HTML), and b) the message is whatever is typed into the Mesnaje textarea.

      @: As cretaceous pointed out, you shouldn't be using a user-supplied e-mail address in the "From:" e-mail header. This header should always contain an e-mail address on your domain.

        Write a Reply...