【问题标题】:how can I fix xampp mercury server 553 error?如何修复 xampp 汞服务器 553 错误?
【发布时间】:2018-03-24 16:05:57
【问题描述】:

有人帮我完成我的 php 邮件功能TQ

  <?php
  $to = 'myname@gmail.com';
  $sub = 'this is a test mail';
  $message ='this is a mail :)';
  $from = 'From: postmaster@localhost';
  $m = mail($to,$sub,$message,$from);
  if($m){
  echo'<b>ststus:</b> sent';    
  }else{
  echo'<b>ststus:</b> not sent';
  }
  ?>

警告:mail():SMTP 服务器响应:553 我们不中继非本地邮件,抱歉。在第 6 行的 E:\xampp\htdocs\mail\mail.php 状态:未发送

【问题讨论】:

    标签: php xampp


    【解决方案1】:

    默认情况下,像 Xampp 这样的虚拟服务器不允许您从 localhost 发送邮件,因为它不是“实际”服务器。

    请参阅此答案以实现它: How to configure XAMPP to send mail from localhost?

    【讨论】:

    • @K55555 抱歉,我不确定你的意思
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2017-05-25
    • 1970-01-01
    • 2017-12-30
    • 2012-09-04
    • 2014-08-04
    • 2019-04-13
    • 2022-10-08
    相关资源
    最近更新 更多