使用phpmailer在bluehost中发送邮件错误

时间:2017-07-20 04:46:47

标签: php

我在bluehost服务器上使用php-mailer。 mail-> send不会出错,但收件人的收件人收不到邮件。 我不知道如何调试。

1 个答案:

答案 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