|
|
|
โค๊ดที่ตอบกลับเมล์อัตโนมัติไปยังสมาชิก เมื่อเค้ากด submit เข้าเป็นสมาชิก |
|
|
|
|
|
|
|
ปกติก็ไม่ยากนี่ครับ
เมื่อมีการบันทึกข้อมุลเสร้จแล้ว ให้เอา code ที่ทำการส่งเมลไปต่อบรรทัดนั้นเลยครับ
เช่น
<?php
/---- ส่วนของการบันทึกลงฐานข้อมูล ----/
insert into................
หลังจากบันทึกเสร็จ ก็ให้ทำการส่งอีเมลได้เลยครับ
/---- ส่วนของการส่งอีเมล----/
$To="[email protected]";
$Subject="ทดสอบการส่งเมลล์";
$Massage="ทดสอบการส่งเมลล์ครับ ได้รับแล้วตอบด้วย";
$From="[email protected] ";
mail($To,$Subject,$Massage,$From);
เมื่อส่งเสร็จอาจจะให้กระโดดไปหน้าใดหน้าหนึ่งโดยใช้คำสั่ง
header("location:file.php");
?>
//---------------------
|
|
|
|
|
Date :
24 Jun 2547 10:13:46 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ส่งสัยต้องไปปรับ board ใหม่แล้วครับ เพี้ยน ๆ เวลา post ข้อความ
|
|
|
|
|
Date :
24 Jun 2547 10:15:07 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ครับผมก็ไม่ได้เลย ช่วยบอกแบบเต็มรูปแบบได้มั้ยครับ
|
|
|
|
|
Date :
2012-07-15 01:25:12 |
By :
เกรฟ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Quote:พี่ครับผมก็ไม่ได้เลย ช่วยบอกแบบเต็มรูปแบบได้มั้ยครับ
บทความนี้ครับ
Code (PHP)
$strSQL = "INSERT INTO member (Username,Password,Name,Email,Status,SID,Active) VALUES ('".$_POST["txtUsername"]."',
'".$_POST["txtPassword"]."','".$_POST["txtName"]."' ,'".$_POST["txtEmail"]."','USER','".session_id()."','No')";
$objQuery = mysql_query($strSQL);
$Uid = mysql_insert_id();
echo "Register Completed!<br>Please check your email to activate account";
$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);
Go to : PHP Member Register and Email Activation ยืนยันการสมัครสมาชิกทางอีเมล์
|
|
|
|
|
Date :
2012-07-15 09:03:22 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|