Trada en llegar a hotmail, no llega a gmail ni a yahoo
Código PHP:
function enviocorreo($p_para,$p_asunto,$p_mensaje){
$para = $p_para;
$asunto = $p_asunto;
$from = "[email protected]";
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$sheader="From:Administrador <".$sfrom.">\nReply-To:".$sfrom."\n";
$headers .= "To:".$para."\r\n";
// Mail it
$mensaje = $p_mensaje;
// Enviarlo
if (mail($para, $asunto, $mensaje,$headers)){
// display confirmation message if mail sent successfully
$msg = "Su mensaje ha sido enviado a nuestro correo $para.";
}
}