php邮件垃圾邮件问题

时间:2015-03-16 12:58:16

标签: php email

 $to      = $_POST['email'];
        $subject = 'Your password';
        $message = $_POST['password'];
        $headers = 'From: https://client.yourtradechoice.com/ no_reply@yourtradechoice.com' . "\r\n" ;
        $headers .='Reply-To: '. $to . "\r\n" ;
        $headers .='X-Mailer: PHP/' . phpversion();
        $headers .= "MIME-Version: 1.0\r\n";
        $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";   
        mail($to, $subject, $message, $headers);

垃圾邮件发送如何解决?

1 个答案:

答案 0 :(得分:0)

不要使用php邮件功能发送电子邮件。使用像Swiftmailer& amp;使用SMTP服务器发送电子邮件。