我在bluehost服务器上使用php-mailer。 mail-> send不会出错,但收件人的收件人收不到邮件。 我不知道如何调试。
答案 0 :(得分:-2)
看看这个答案:
Debugging PHP Mail() and/or PHPMailer
您可以使用以下方式进行调试:
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only