I'm using PHP mail() function to send out mails using my script. It goes as:
$headers = "From: registration@tutorsvilla.com\r\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$message="Thanks a lot for registering on TutorsVilla.";
mail($email,"Email Verification-TutorsVilla",$message,$headers,'-
freturn@tutorsvilla.com');
But even after having a registered email account on the web host, my mails are landing in spam. Why is that so?