gpt4 book ai didi

php - 如何修复警告 : mail() [function. mail] : SMTP server response: 530 SMTP authentication is required. in C :\xampp\htdocs\. 。在第 22 行错误

转载 作者:行者123 更新时间:2023-12-04 05:39:52 24 4
gpt4 key购买 nike

我是 PHP 新手,并在网上以脚本为例。
我已经设置了 Xampp,并且 php 已安装并正常工作。
我尝试使用 hMailServer 设置本地邮件服务器,但是我不确定这是否设置正确。
无论如何,这是PHP代码:

<?php

$subject="";
$detail="";
$customer_mail="";
$name="";

// Contact subject
$subject ="$subject";

// Details
$message="$detail";

// Mail of sender
$mail_from="$customer_mail";

// From
$header="from: $name <$mail_from>";

// Enter your email address
$to ='sean.myers92@gmail.com';
$send_contact=mail($to,$subject,$message,$header);

// Check, if message sent to your email
// display message "We've recived your information"
if($send_contact){
echo "We've recived your contact information";
}
else {
echo "ERROR";
}
?>

以及相应的 HTML 代码:
<table width="400" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td><strong>Contact Form </strong></td>
</tr>
</table>
<table width="400" border="0" align="center" cellpadding="0" cellspacing="1">
<tr>
<td><form name="form1" method="post" action="test.php">
<table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td width="16%">Subject</td>
<td width="2%">:</td>
<td width="82%"><input name="subject" type="text" id="subject" size="50"></td>
</tr>
<tr>
<td>Detail</td>
<td>:</td>
<td><textarea name="detail" cols="50" rows="4" id="detail"></textarea></td>
</tr>
<tr>
<td>Name</td>
<td>:</td>
<td><input name="name" type="text" id="name" size="50"></td>
</tr>
<tr>
<td>Email</td>
<td>:</td>
<td><input name="customer_mail" type="text" id="customer_mail" size="50"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td><input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>

当我提交表单时,我收到错误警告:mail() [function.mail]:SMTP 服务器响应:需要 530 SMTP 身份验证。
任何想法可能是错误的?
谢谢

最佳答案

来自 hMailServer 的论坛:http://www.hmailserver.com/forum/viewtopic.php?f=6&t=22039

在 IP 范围内。转到我的电脑 ip 范围并取消本地到外部和/或外部到外部的身份验证。

关于php - 如何修复警告 : mail() [function. mail] : SMTP server response: 530 SMTP authentication is required. in C :\xampp\htdocs\. 。在第 22 行错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11394099/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com