Why is this mail going straight to SPAM box?

Posted by ththat on Stack Overflow See other posts from Stack Overflow or by ththat
Published on 2010-06-08T15:53:40Z Indexed on 2010/06/08 16:22 UTC
Read the original article Hit count: 153

Filed under:
|

I am using the following script to send mail

<?
extract($_POST);
$subject = "Feedback from ".$name." (".$email.", Ph: ".$phone.")";
$mail = @mail($send,$subject,$content);
if($mail) { echo "Your feedback has been sent"; }
else { echo "We are sorry for the inconvienience, but we could not send your feedback now."; }
?>

But this is always ending up in the spam Folder. Why?

© Stack Overflow or respective owner

Related posts about php

Related posts about mail