|
|
|
ทำอย่างไรไม่ให้ mail ที่ส่งไป เป็นเมล์ขยะ คือผมเขียน Script php ลืมรหัสผ่าน แล้วส่งรหัสผ่านไปที่เมล์ |
|
|
|
|
|
|
|
อันนี้จากการศึกษาส่วนตัวนะครับ
ใช้ mail () ธรรมดา ในตอนแรกใช้เน็ต tot กำหนด smtp เป็น tot ส่งเข้า hotmail,yahoo,gmail ได้ไม่มีปัญหา
แต่พอลองใช้มือถือต่อเน็ต(DTAC) เน็ตเป็น KSC กำหนด smtp เป็น ksc เมล์ที่เคยส่งเข้าได้ดี กลายเป็นขยะไปเลยครับ
ซึ่งตรงนี้ผมว่า isp น่าจะเป็นส่วนสำคัญ ของความน่าเชื่อถือของอีเมลล์
|
|
|
|
|
Date :
28 เม.ย. 2551 17:22:10 |
By :
kikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-04-06 13:29:17 |
By :
แอ็ค |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-09-14 11:16:26 |
By :
marquee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|