the code below i`m using to send emails to members in my site.
but in yahoo they are saved in the Spam folder also hotmail in junk folder.
$from="From:mysite@mysite.com\r\n";
$to="$email";
$subject="$user left you a Profile Comment on mysite.Com ";
$content="$user left you a profile comment on mysite.Com
to view the Comment click http://www.mysite.com";
if($content){
mail($to, $subject, $content,$from);
Any suggestion on how to Overcome this will be Appreciated