My mails are sent as spam, i use php mail()
问题 I have a website which send a single mail for those who register, definitely not spam. And the thing is that I use mail() function in PHP but lots of people receive it as spam. $title = "title"; $body = "message"; $header = "MIME-Version: 1.0" . "\r\n"; $header .= "Content-type: text/html; charset=iso-8859-1" . "\r\n"; $header .= "To: ".$_POST["name"]." <".$_POST["email"].">" . "\r\n"; $header .= "From: SteamBuy <contacto@steambuy.com.ar>" . "\r\n"; mail($_POST["email"], $title, $body,