I have a problem with hotmail, I am using PHP mail to send email, but all emails are going into the junk folder. Here is my code:
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "From: Testing <abc@hotmail.com>\n";
$headers .= "X-Mailer: PHP's mail() Function\n";
mail("abc@hotmail.com", "Message", "A simple message.", $headers);