อยากทราบการเขียนโค้ด ยืนยันการสมัครสมาชิกทางอีเมล์
หลังจากสมัครสมาชิกแล้วก็เขียนโค๊ดส่งเมล์ธรรมดาแหละครับ เพียงแต่ส่งให้ที่อีเมล์ผู้สมัครเท่านั้นเอง
<?
$to = อีเมล์ตอนสมัครสมาชิ ก;
$subject = "ทดสอบส่งเมล์";
$body = "หวัดดีครับ ยินดีต้อนรับเข้าสู่เว็บ xxx.com ";
$head = "From: อีเมล์เรา\r\";
mail( $to, $subject, $body, $head );
echo "ส่งเมล์เรียบร้อยแล้ว";
?>
Date :
5 ส.ค. 2551 03:36:32
By :
ip007
ช่วยน่อยนะคร่ะ^^
Date :
2009-05-13 13:24:20
By :
nanny_Ziiza
ส่งอีเมล์
$strTo = $_POST["txtEmail"];
$strSubject = "Activate Member Account";
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: [email protected] \nReply-To: [email protected] ";
$strMessage = "";
$strMessage .= "Welcome : ".$_POST["txtName"]."<br>";
$strMessage .= "=================================<br>";
$strMessage .= "Activate account click here.<br>";
$strMessage .= "https://www.thaicreate.com/activate.php?sid=".session_id()."&uid=".$Uid."<br>";
$strMessage .= "=================================<br>";
$strMessage .= "ThaiCreate.Com<br>";
$flgSend = mail($strTo,$strSubject,$strMessage,$strHeader);
การยืนยัน
$strSQL = "UPDATE member SET Active = 'Yes' WHERE SID = '".trim($_GET['sid'])."' AND UserID = '".trim($_GET['uid'])."' ";
$objQuery = mysql_query($strSQL);
Go to : PHP Member Register and Email Activation ยืนยันการสมัครสมาชิกทางอีเมล์
Date :
2011-05-25 14:43:58
By :
webmaster
Load balance : Server 03