|
|
|
ผมมีปัญหาเรื่องการส่ง password ผ่านทาง e-mail ช่วยหน่อยนะครับ |
|
|
|
|
|
|
|
ส่งไป Hotmail น่าจะลำบากนะครับ โดยปกติ Hotmail จะคิดว่าเราเป็น Spam แต่กับเมล์อื่นจะไม่เกิด ลองเปลี่ยนไปทดสอบกับ เมล์อื่นที่ไม่ใช่ hotmail ดูครับ
ปล. ใครที่รู้วิธีแก้ เวลาส่งเมล์ไป Hotmail แล้วเข้าไปอยู่ใน Junk บอกกันมั่งก็ดีนะ
http://goragod.mwfhost.com
|
|
|
|
|
Date :
16 พ.ย. 2549 10:02:59 |
By :
goragod |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
mysql_connect("localhost","root","root");
mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM member WHERE Username = '".trim($_POST['txtUsername'])."'
OR Email = '".trim($_POST['txtEmail'])."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if(!$objResult)
{
echo "Not Found Username or Email!";
}
else
{
echo "Your password send successful.<br>Send to mail : ".$objResult["Email"];
$strTo = $objResult["txtEmail"];
$strSubject = "Your Account information username and password.";
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: [email protected]\nReply-To: [email protected]";
$strMessage = "";
$strMessage .= "Welcome : ".$objResult["Name"]."<br>";
$strMessage .= "Username : ".$objResult["Username"]."<br>";
$strMessage .= "Password : ".$objResult["Password"]."<br>";
$strMessage .= "=================================<br>";
$strMessage .= "ThaiCreate.Com<br>";
$flgSend = mail($strTo,$strSubject,$strMessage,$strHeader);
}
mysql_close();
?>
Go to : PHP Forgot Lost Password and Sending Password to Mail ทำ Form ลืมรหัสผ่าน ด้วย PHP กับ MySQL
|
|
|
|
|
Date :
2011-07-07 10:55:05 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|