Php mail get junk in hotmail

Hi there,

I find out that my email get junk in hotmail. it works everywhere else except hotmail.
I have read that it might be my headers but got no clue what to insert or change. I am still looking around but with no success.

Does anybody know anything about hotmail and php email?

Thanks a lot for any help.

Regards,

Jerome


<?php
$headers  = 'MIME-Version: 1.0' . "
";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "
";

// Additional headers
$headers .= 'From: Whaterver subject <youremail@gmail.com>' . "
";
    
$userSubject    = "You have requested your Ownership Profile Username";

$htmltext = "<html><body><table><tr><td><b>Hello World</b></td></tr></table></body></html>";

$success = mail($Recipiant,$userSubject,$htmltext,$headers);
?>