|
Posted by RageARC on 09/16/07 15:27
I've made a script that sends mails, and it sends mails correctly for
gMail, but not for Hotmail. What happens is that on Hotmail the mails
are not even received! Nor on spam box, nor on inbox.
$headers = "From: $from\r\n";
$headers .= "Content-type: text/html\r\n";
mail($to, $subject, $message, $headers);
This is the important info on the mail. The subject is a string, the
$to and the $from are emails and the $message is HTML.
?>
[Back to original message]
|