我只能将邮件发送到本地域,因为其他域不发送邮件吗?

时间:2019-06-07 11:41:07

标签: php smtp phpmailer cpanel

我正尝试将邮件发送到gmail,yahoo等其他域,但只允许我将其发送到本地域。

以下代码可用于我的本地域

 $sender = 'support@mydomain.com';
 $recipient = 'admin@mydomain.com';
 $subject = "php mail test";
 $message = "php test message";
 $headers = 'From:' . $sender;
 if (mail($recipient, $subject, $message, $headers))
  {
    echo "Message accepted";
  }
 else
  {
   echo "Error: Message not accepted";
  }

如果我用我的gmail电子邮件ID替换$ recipient,则无法正常使用

我正在使用我的实时c面板服务器

0 个答案:

没有答案