所以我正在构建一个localhost页面,它包含用户,因此我创建了一个忘记密码页面,以便在忘记密码时重置密码,并将随机密码更新到数据库中。
这是ForgotPassword的代码,我通过验证电子邮件而不是ID来使用它。
<h2 style="text-align:center;"> Forgot Password </h2>
<table align="center" bgcolor="#FFFFFF" width="500" height ="180">
<form action="doForgotPassword.php" method="post">
<tr><td align="right" height="50" width="200">First Name</td>
<td><input type="text" name="first_name" /></td></tr>
<tr><td align="right" height="50">Email</td>
<td><input type="text" name="email" /></td></tr>
<tr><td colspan="2" align="right"><input type="submit" value="Submit"/></td></tr>
</table> </form> </td></table>
这是DoForgotPassword的代码,我设法在数据库中更改它,但无法通过电子邮件发送给用户。 我在这一行遇到麻烦
<?php
public function sendMail($email =$_POST['email'] , $id)
这是其后的其余代码。
{
$to = $email /* separated by comma for another email (useful if you want to keep records(sending to yourself))*/;
$subject = 'INSERT_SUBJECT_HERE';
$bound_text = "----*%$!$%*";
$bound = "--".$bound_text."\r\n";
$bound_last = "--".$bound_text."--\r\n";
$headers = "From: noreply@somewhere.com\r\n";
$headers .= "MIME-Version: 1.0\r\n" .
"Content-Type: multipart/mixed; boundary=\"$bound_text\""."\r\n" ;
$message = " you may wish to enable your email program to accept HTML \r\n".
$bound;
$message .=
'Content-Type: text/html; charset=UTF-8'."\r\n".
'Content-Transfer-Encoding: 7bit'."\r\n\r\n".
'
<font size="3" color="#000000" style="text-decoration:none;font-family:Lato light">
<div class="info" Style="align:left;">
<p>information here<!--(im sure you know how to write html ;))--></p>
<br>
'. /* <p>Charge: '.$charge.' </p> */'
<br>
<p>Reference Number: '.$id.'</p>
</div>
</br>
<p>-----------------------------------------------------------------------------------------------------------------</p>
</br>
<p>( This is an automated message, please do not reply to this message, if you have any queries please contact someone@someemail.com )</p>
</font>
</div>
</body>
'."\n\n".
$bound_last;
$sent = mail($to, $subject, $message, $headers); // finally sending the email
}
$email =$_POST['email'];
function createRandomPassword() {
$chars = "ABCDEFGHJKLMNOPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz0123456789";
$i = 0;
$pass = '' ;
while ($i <= 8) {
$num = mt_rand(0,61);
$tmp = substr($chars, $num, 1);
$pass = $pass . $tmp;
$i++;
}
return $pass;
}
$pw = createRandomPassword();
$query = "UPDATE users SET password= SHA1('$pw') WHERE email = '$email' ";
$result = mysqli_query($link, $query);
if ($result){
$query3 = "SELECT * FROM users where email = '$email'";
$sql = mysqli_query($link, $query3) or die(mysqli_error());
$rownum = mysqli_num_rows($sql);
if(!$rownum ) {
echo "We can not find your email in our records";
}
}
这是结果代码
if($result){
if(isset($_POST['id'])){
$id = $_POST['id'];
sendMail($email, $id);
}
}
?>
答案 0 :(得分:1)
这是我用于我当前应用程序上的任何邮件的功能(删除敏感信息),很容易弄清楚你需要做什么,但提供的评论应该回答一些问题,
这个函数允许html格式化,这可以让你变得漂亮:D
public function sendMail($email, $company, $location, $startAt, $endAt, $date, $userId,$duration)
{
$to = $email; /* '. ','; separated by comma for another email (useful if you want to keep records(sending to yourself))*/;
$subject = 'INSERT_SUBJECT_HERE';
$bound_text = "----*%$!$%*";
$bound = "--".$bound_text."\r\n";
$bound_last = "--".$bound_text."--\r\n";
$headers = "From: noreply@somewhere.com\r\n";
$headers .= "MIME-Version: 1.0\r\n" .
"Content-Type: multipart/mixed; boundary=\"$bound_text\""."\r\n" ;
$message = " you may wish to enable your email program to accept HTML \r\n".
$bound;
$message .=
'Content-Type: text/html; charset=UTF-8'."\r\n".
'Content-Transfer-Encoding: 7bit'."\r\n\r\n".
'
<!-- here is where you format the email to what you need, using html you can use whatever style you want (including the use of images)-->
<BODY BGCOLOR="White">
<body>
<div Style="align:center;">
<p>
<img src="IMAGE_URL" alt= "IMAGE_NAME">
</p>
</div>
</br>
<div style=" height="40" align="left">
<font size="3" color="#000000" style="text-decoration:none;font-family:Lato light">
<div class="info" Style="align:left;">
<p>information here<!--(im sure you know how to write html ;))--></p>
<br>
<p>Location: '.$location.' <!-- $location is the variable you wish to insert as is $date etc --> </p>
<p>Date: '.$date.' </p>
<p>Time: '.$startAt.' </p>
<p>Duration: '.$duration.' </p>
<p>Company: '.$company.' </p>
'. /* <p>Charge: '.$charge.' </p> */'
<br>
<p>Reference Number: '.$userId.'</p>
</div>
</br>
<p>-----------------------------------------------------------------------------------------------------------------</p>
</br>
<p>( This is an automated message, please do not reply to this message, if you have any queries please contact someone@someemail.com )</p>
</font>
</div>
</body>
'."\n\n".
$bound_last;
$sent = mail($to, $subject, $message, $headers); // finally sending the email
}
这绝对可以工作(只要你替换INSERT _...等),除此之外我不能立即看到你的代码有什么问题,只有我能真正推荐的是检查你的应用程序错误日志,它应该如果出现任何问题,请告诉你。
否则请检查您的php ini文件以查看sendmail是否已激活:)
关心史蒂夫。
---------编辑---------
所以你的新代码应该是这样的;
<?php
$email =$_POST['email'];
public function sendMail($email, $userId)
{
$to = $email;
$subject = 'Password Reset';
$bound_text = "----*%$!$%*";
$bound = "--".$bound_text."\r\n";
$bound_last = "--".$bound_text."--\r\n";
$headers = "From: noreply@somewhere.com\r\n";
$headers .= "MIME-Version: 1.0\r\n" .
"Content-Type: multipart/mixed; boundary=\"$bound_text\""."\r\n" ;
$message = " you may wish to enable your email program to accept HTML \r\n".
$bound;
$message .=
'Content-Type: text/html; charset=UTF-8'."\r\n".
'Content-Transfer-Encoding: 7bit'."\r\n\r\n".
'
<BODY BGCOLOR="White">
<body>
</br>
<div style=" height="40" align="left">
<font size="3" color="#000000" style="text-decoration:none;font-family:Lato light">
<div class="info" Style="align:left;">
<p>place link here for password reset</p>
<p>Reference Number: '.$userId.'</p>
</div>
</br>
<p>-----------------------------------------------------------------------------------------------------------------</p>
</br>
<p>( This is an automated message, please do not reply to this message, if you have any queries please contact someone@someemail.com )</p>
</font>
</div>
</body>
'."\n\n".
$bound_last;
$sent = mail($to, $subject, $message, $headers); // finally sending the email
}
function createRandomPassword() {
$chars = "ABCDEFGHJKLMNOPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz0123456789";
$i = 0;
$pass = '' ;
while ($i <= 8) {
$num = mt_rand(0,61);
$tmp = substr($chars, $num, 1);
$pass = $pass . $tmp;
$i++;
}
return $pass;
}
$pw = createRandomPassword();
$query = "UPDATE users SET password= SHA1('$pw') WHERE email = '$email' ";
$result = mysqli_query($link, $query);
if ($result){
$query3 = "SELECT * FROM users where email = '$email'";
$sql = mysqli_query($link, $query3) or die(mysqli_error());
$rownum = mysqli_num_rows($sql);
if(!$rownum ) {
echo "We can not find your email in our records";
}
}
if($result){
$this->sendMail($email, $userId); /*does it need to be in a class for $this->? or can you call functions within the php page without?*/
} ?>
------编辑------
好的函数调用应该是sendMail($variableOne, $variableTwo)
如果删除sendMail函数开头的变量,那么它应该是function sendMail($email){/*code*/}
并尝试(发送邮件需要电子邮件)
------编辑------
我最近改造了此功能以允许使用Gmail SMTP,如果您查看此Page from RamDev (Check the post by Stephen Penn),我会解释步骤以及我构建的功能,它可以帮助您了解邮件的过程SMTP。
再次感谢,
史蒂夫
答案 1 :(得分:0)
<?php
include "connection.php";
echo "<br>";
if(isset($_POST['submit']))
{
$email = $_POST['email'];
$check = mysql_query("select * from register where email = '$email' ");
$find = mysql_num_rows($check);
if($find)
{
function makepassword($length)
{
$validCharacters = "ABCDEFGHIJKLMNPQRSTUXYVWZ123456789";
$validCharNumber = strlen($validCharacters);
$result ="";
for ($i = 0; $i < $length; $i++)
{
$index = mt_rand(0, $validCharNumber - 1);
$result .= $validCharacters[$index];
}
return $result;
}
$random_password = makepassword(10);
//echo $password_final = md5($random_password);
//echo "update set pass ='$random_password' where email = '$email'"; exit;
$final_result = mysql_query("update register set pass ='$random_password' where email = '$email' ");
if($final_result)
{
echo "Your Password is:".$random_password;
}
}
else
{
echo "Email Not Found";
}
}
?>