Hello,
I have been searching far and wide but am yet to find a solution, my php mail sends email to all addresses except hotmail (not weven junk).
Code:
$message = "Welcome to Sky Crew,
Your personal account for the Skye Crew has been created!
Your personal login ID and password are as follows:
userid: ******
password: *****
To log in, proceed to the following address:
http://www.skyecrew.co.za/login.php
Skye Crew Team
";
$headers= "From: Skye Crew<info@skyecrew.co.za>\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "X-Mailer: PHP4\n";
$headers .= "Content-Type: text/plain\r\n";
$headers .= "Content-Transfer-Encoding: 8bit\r\n";
$headers .= "Message-ID: \r\n";
mail($_POST['user'],"Your Password for the Skye Crew Website", $message, $headers);
I have tried many different headers, messages and ways to write them yet still no success.
If you have any suggestions or a working php mail script which goes through to hotmail please help me, thank-you.