
hola como estas? mira yo tenia un problem similar fijate si te sirve esto
Código PHP:
$para=$myrow[e_mail];
$tema="Este es el Tema";
$autor= "Este es el Autor";
$autor_mail="[email protected]";
$cabeceras = 'MIME-Version: 1.0' . "\r\n";
$cabeceras .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$cabeceras .="From: ".$autor."<".$autor_mail.">\nReply-To:".$autor_mail."\nX-Mailer: PHP/". phpversion();
$mensaje='<html>
<body>
.
.
.
</body>
</html>';
if (@mail ($para, $tema, $mensaje, $cabeceras)) {
echo "bien!!!!!!!";
}
else {
echo "mal";
}
ami asi me funciona perfecto espero ke te sirva...suerte!!!
salu
2