We have a feature where customers can sign up for product alerts by email. This is automatically generated from our php script. The problem is, we get reports that hotmail and AOL customers are not getting alerts... not even in their spam.
Is this a common problem specific to hotmail and AOL? Or, perhaps is there something wrong with our script?
function sendEmailMsg($email, $subj, $body, $from){
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'From: ' . $from . "\r\n";
$headers .= 'Reply-To: ' . $from . "\r\n";
$headers .= 'X-Priority: 1\r\n';
$headers .= 'X-MSMail-Priority: High\r\n';
$headers .= 'Importance: High\r\n';
mail($email, stripslashes($subj), stripslashes($body), $headers);
}
Please let me know!