gpt4 book ai didi

php - XAMPP发送邮件

转载 作者:行者123 更新时间:2023-11-29 22:25:39 25 4
gpt4 key购买 nike

我有这个代码,如果他忘记了密码,可以通过电子邮件发送请求密码。它正在工作(没有错误),但我没有收到任何邮件。我不知道该怎么办。

我试过这个:XAMPP Sendmail using Gmail account但相同。

<html>
<head>
<style type="text/css">
input{
border:1px solid olive;
border-radius:5px;
}
h1{
color:darkgreen;
font-size:22px;
text-align:center;
}

</style>
</head>
<body>
<h1>Forgot Password<h1>
<form action='#' method='post'>
<table cellspacing='5' align='center'>
<tr><td>Email id:</td><td><input type='text' name='mail'/></td></tr>
<tr><td></td><td><input type='submit' name='submit' value='Submit'/></td></tr>
</table>
</form>

<?php
if(isset($_POST['submit']))
{
mysql_connect('localhost','root','') or die(mysql_error());
mysql_select_db('oes') or die(mysql_error());
$mail=$_POST['mail'];
$q=mysql_query("select * from student where emailid='".$mail."' ") or die(mysql_error());
$p=mysql_affected_rows();
if($p!=0)
{
$res=mysql_fetch_array($q);
$to=$res['emailid'];
$subject='Remind password';
$message='Your password : '.$res['stdpassword'];
$headers='From:octaenache@gmail.com';
$m=mail($to,$subject,$message,$headers);
if($m)
{
echo'Check your inbox in mail';
}
else
{
echo'mail is not send';
}
}
else
{
echo'You entered mail id is not present';
}
}
?>
</body>
</html>

最佳答案

问题在于服务器配置而不是您的代码。尝试看看这个: php-ini-sendmail-configuration-to-send-an-email-using-a-php-script

关于php - XAMPP发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30285439/

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