|
|
|
ช่วยดูโค็ตการส่งอีเมล์หน่อยครับ พอดีจะเพิ่มอีก textbox แล้วทำไมถึงส่งเมล์ไม่ได้ งง ครับ |
|
|
|
|
|
|
|
Code (PHP)
<?
$strTo = $_POST["txtTo"];
$strSubject = $_POST["txtSubject"];
$strHeader = "Content-type: text/html; charset=UTF-8\n"; // or UTF-8 //
$strHeader .= "From: ".$_POST["txtFormName"]."<".$_POST["txtFormEmail"].">\nReply-To: ".$_POST["txtFormEmail"]."";
$strMessage = nl2br($_POST["txtDescription"]);
$strMessage = nl2br($_POST["txtTel1"]);
$flgSend = mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "<script>alert('ระบบได้ส่งอีเมล์เรียบร้อยแล้ว!!');</script>";
echo "<script>window.location='home.html';</script>";
}
else
{
echo "<script>alert('เกิดข้อผิดพลาดในการส่งอีเมล์!!');</script>";
echo "<script>window.location='contact.php';</script>";
}
ทำไมเปิดเมล์ดูแล้วช่องรายละเอียดเข้าแต่txtTel1 แต่ txtDescription ไม่เข้าละครับ งง
|
|
|
|
|
Date :
2011-05-07 09:23:52 |
By :
beer656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strMessage = nl2br($_POST["txtDescription"]);
$strMessage .= nl2br($_POST["txtTel1"]);
|
|
|
|
|
Date :
2011-05-07 12:39:13 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2011-05-07 14:27:26 |
By :
beer656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|