![Neurótico](http://static.forosdelweb.com/fdwtheme/images/smilies/scared.png)
Cuando un usuario se registra en mi pagina, el recibe un email de que sus datos han sido recibidos por la pagina, y cuando activo la cuenta, tambien automaticamente le llega un email anunciandole la activacion de ésta, el problema es que estos emails caen en la carpeta basura de hotmail unicamente, yahoo esta bien,
![Neurótico](http://static.forosdelweb.com/fdwtheme/images/smilies/scared.png)
![Patada](http://static.forosdelweb.com/fdwtheme/images/smilies/footinmouth.png)
Como hago para evitar esto por favor!! ayuda!
Os copio aqui como estoy enviando el mail una vez se ha validado el formulario:
Código PHP:
list($admin_email)=mysql_fetch_array($rsAdmin);
$subjectNotify = $site_name." - ".$HTTP_POST_VARS['type']." Registration";
$messageNotify = "Dear ".stripslashes($HTTP_POST_VARS["contact_name"]).",<br><br> ";
$messageNotify .= "We would like to inform you that you are registered as \"".$HTTP_POST_VARS['type']."\" on ".$site_name." web site.";
$messageNotify .= "<br><br>After the site administrator activates your account, you will receive new email with your login information.";
$messageNotify .= "<br><br>Regards,<br>".$site_name;
$headers = "From: ".$site_name."<".$admin_email.">\n";
$headers .= "Content-Type: text/html; charset=iso-8859-1";
@mail($HTTP_POST_VARS["email"], $subjectNotify, $messageNotify, $headers);
$admin_msg = "Dear Administrator,<br><br>\n We would like to inform you that a new \"".$HTTP_POST_VARS['type']."\" has been registered on your site.<br><br>\n
Name: ".stripslashes($HTTP_POST_VARS["contact_name"])." ".stripslashes($HTTP_POST_VARS["last_name"])."<br>\n
Email: ".stripslashes($HTTP_POST_VARS["email"])."<br>\n
Type: ".$HTTP_POST_VARS["type"];
@mail($admin_email, $subjectNotify, $admin_msg, $headers);
$flag=1;