Que debo arreglarle a este código para que me funcione bien?. Pues envio correo a mis cuentas y llega pero no llega hotmail. Gracias
<?php
$direccion=$_POST['direccion'];
$tipo=$_POST['tipo'];
$mensaje1 = '<img src="http://www.dominio.com/carpeta/imagen.jpg">';
$mensaje2 = '<br><a href="http://www.dominio.com/carpeta/correo.html">ver cotización |</a>';
$mensaje3 = '<a href="http://www.dominio.com\">Visita Sitio Web |</a>';
if ($direccion!=""){
if ($tipo=="plano"){
//texto
mail($direccion,
"Cualquier texto",
"Cuanquier cosa\n\n\nhttp://www.dominio.com/\n",
"FROM: bla bla bla <
[email protected]>\n");
} else {
// Envio en formato HTML
mail($direccion,
"Cualquier texto",
"<html>
<head>
<title>Cualquier texto</title>
</head>
<body>
$mensaje1
$mensaje2
$mensaje3<br><br>
AQUI PONER COTIZACION
<br>
<br>
<b>Cualquier texto.</b>
</body>
</html>",
"Content-Type: text/html");
}
echo "Se ha enviado un email a la dirección: ",$direccion," .En formato <b>",$tipo,"</b>.";
}
?>