Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in C:\Archivos de programa\Apache Group\Apache2\htdocs\lab\contactarWM.php on line 47
Código PHP:
$para=$HTTP_POST_VARS["para"];
$deNombre=$HTTP_POST_VARS["deNombre"];
$deEmail=$HTTP_POST_VARS["deEmail"];
$asunto=$HTTP_POST_VARS["asunto"];
$msg=$HTTP_POST_VARS["msg"];
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $deNombre <$deEmail>\r\n";
$enviado=mail($para,$asunto,$msg,$headers);
if ($enviado){
echo "Listo, información enviada";
} else {
echo "Error al enviar el email";
}