Php 无法使用wp_mail()发送邮件

Php 无法使用wp_mail()发送邮件,php,wordpress,email,Php,Wordpress,Email,我正在尝试使用以下代码使用wp\u mail发送邮件: $headers[] = 'From: Singhal Competition Classes <example@singhalcompetitionclasses.com>'; $headers[] = 'Content-Type: text/html; charset=UTF-8'; $messg = "Hi $user_id .... <br/><br/>Thank

我正在尝试使用以下代码使用
wp\u mail
发送邮件:

$headers[] = 'From: Singhal Competition Classes <example@singhalcompetitionclasses.com>';
        $headers[] = 'Content-Type: text/html; charset=UTF-8';
        $messg = "Hi $user_id .... <br/><br/>Thank You for taking the online exam. Your Score card is as follow : <br/><br/><table><tr><td>
        Total Correct Answer :</td><td> $correct_ansq </td></tr>
        <tr><td>Not Given Answer  </td><td> $no_ans </td></tr>
        <tr><td> Total Wrong Answer </td><td> $wrong <br/></td></tr>
        <tr><td> Percentage </td><td> $result % </td></tr>
        <tr><td>Result </td><td> $result</td></tr></table>
        ";
        $to_mail = $useremail;
        $subject = "Online Exam Score Card";
        wp_mail( $to_mail, $subject, $messg, $headers );
$headers[]='From:Singhal竞争类';
$headers[]='内容类型:text/html;字符集=UTF-8';
$messg=“Hi$user\u id….

感谢您参加在线考试。您的成绩卡如下:

总正确答案:$Correct\u ansq 未给出答案$否 错误答案总数$错误
百分比$结果% 结果$Result "; $to_mail=$useremail; $subject=“在线考试成绩卡”; wp_-mail($to_-mail,$subject,$messg,$headers);
我有真正的
wp调试
,但是当完成操作时,我没有得到任何错误

我的收件箱中没有收到任何邮件或垃圾邮件


以下错误可能是什么?以下是一个很好的示例:

打开php.ini,在SMTP和Sendmail部分填写服务器名称、密码和电子邮件地址

From website.

[mail function]
; For Win32 only.
SMTP = smtp.secureserver.net

; For win32 only
sendmail_from = webmaster@tutorialspoint.com