Source code ของ tstmail.php ซึ่งนำไปใช้ได้จริง และรับค่าจาก form ข้างบนนี้ ส่ง mail ให้อัตโนมัติ |
โปรแกรม tstmail.php ทำหน้าที่รับค่าจาก form ในหน้าเว็บนี้
แล้วนำค่าจากตัวแปรที่ถูกส่งมา ไปเป็น parameter สำหรับส่ง E-Mail เช่น ถึงใคร จากใคร เป็นต้น
แต่ถ้ามีการสั่งให้โปรแกรมนี้ประมวลผล โดยไม่มีการส่งตัวแปรมาให้
โปรแกรมจะทำหน้าที่กำหนดค่าเริ่มต้นให้ ดังที่ระบุ เช่น ส่ง mail ให้ burin@yonok.ac.th เป็นต้น
|
<?
if (!isset($_REQUEST["mto"])){
$message = "hi\nthis is test\nthis is line.";
$mto = "burin@yonok.ac.th";
$msubj = "the subject";
$mfrom = "burin@thaiall.com";
$mreply = "burin@thaiall.com";
} else {
$message = $_REQUEST["message"];
$mto = $_REQUEST["mto"];
$msubj = $_REQUEST["msubj"];
$mfrom = $_REQUEST["mform"];
$mreply = $_REQUEST["mreply"];
}
$message = $message."\n======\nService by http://www.thaiall.com/php/tstmail.htm";
$txtfrom = "From: ".$mfrom."\nReply-To: ".$mreply."\nX-Mailer: PHP/" . phpversion();
mail($mto, $msubj, $message, $txtfrom );
?>
<body bgcolor=#ffffff>
Sending completely
======
Service by http://www.thaiall.com/php/tstmail.htm
</body>
Click here ดู source หรือ click ขวา เพื่อ download โปรแกรม tstmail.php ได้
|