Source code ของ tstmailw.php ซึ่งนำไปใช้ได้จริง และรับค่าจาก form ข้างบนนี้ ส่ง mail ให้อัตโนมัติ |
โปรแกรม tstmailw.php ทำหน้าที่รับค่าจาก form ในหน้าเว็บนี้
แล้วนำค่าจากตัวแปรที่ถูกส่งมา ไปเป็น parameter สำหรับส่ง E-Mail เช่น ถึงใคร จากใคร เป็นต้น
แต่ถ้ามีการสั่งให้โปรแกรมนี้ประมวลผล โดยไม่มีการส่งตัวแปรมาให้
โปรแกรมจะทำหน้าที่กำหนดค่าเริ่มต้นให้ ดังที่ระบุ เช่น ส่ง mail ให้ burin@yonok.ac.th เป็นต้น
|
<?
if (empty($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";
}
$message = $message."\n======\nService by http://www.thaiall.com/php/tstmailw.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/tstmailw.htm
</body>
Click here ดู source หรือ click ขวา เพื่อ download โปรแกรม tstmailw.php ได้
|