Php Mail不能从我的服务器发送

时间:2018-04-27 06:27:22

标签: php phpmailer

我有邮件发送的查询表格代码。我正在使用gmail帐户时工作正常,但是当我使用自己的服务器邮件时,它没有发送。以下是我的代码。

if($register)
{
    // Always set content-type when sending HTML email
    $headers = "MIME-Version: 1.0" . "\r\n";
    $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
    $headers .= 'From: <no-reply@xyz.com>' . "\r\n";
    $headers .= 'Cc: check@gmail.com' . "\r\n";
    $headers .= 'Bcc: checknew@xyx.com' . "\r\n";
    mail($email, $subject, $message, $headers);
}

0 个答案:

没有答案