Hola a todos de foros del web,
Tengo el siguiente problema, tengo escript para enviar email cuando se registra un usuario en mi sitio web,
No se por que no llega el email a hotmail, porque despues llega bien a gamil y a otros
este el script
function RegUser()
{
$fecha=date('Y-m-d');
$pass=md5($this->password);
$sql="INSERT INTO clientes(nombre,email,password,idpais,direccion,te lefono,Celular,ciudad,fecha,fecha_nac,sexo,login)V ALUES('$this->nombre','$this->email','$pass','$this->idpais','$this->direccion','$this->telefono','$this->celular','$this->ciudad','$fecha','$this->fecha_nac','$this->sexo','$this->login')";
mysql_query($sql,$this->cnx);
$email = $this->email;
$subject = "Registración a El Sitio de Negocios";
$contenido ="<html>";
$contenido.="<body>";
$contenido.="<strong>Datos de acceso:</strong><br><br>";
$contenido.="<strong>Email:</strong> ".$this->email."<br>";
$contenido.="<strong>Usuario:</strong> ".$this->login."<br>";
$contenido.="<strong>Contraseña:</strong> ".$this->password."<br>";
$contenido.="Ya puedes comenzar a comprar y vender en El Sitio de Negocios"."<br><br>";
$contenido.="Ingresá aquí: "."http://www.elsitiodenegocios.com<br>";
$contenido.="</body>";
$contenido.="</html>";
$headers = 'MIME-Version: 1.0'."\r\n";
$headers .='Content-type: text/html; charset=iso-8859-1'."\r\n";
$headers.= 'From: El Sitio de Negocios <[email protected]>'."\r\n";
mail($email, $subject, $contenido ,$headers);
}
Por favor ayúdenme
Gracias