|
|
|
ขอโค้ด ที่ส่งข้อมูลเข้าเมลค่ะ - อยากให้เวลากด submit แล้วข้อมูลที่กรอก ก็ส่งเข้าไปอีเมล์ที่เลือกอะค่ะ |
|
|
|
|
|
|
|
Code (phpSendMailContactForm.html)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<form action="phpSendMailContactForm.php" method="post" name="frmMain">
<table width="343" border="1">
<tr>
<td>To</td>
<td><input name="txtTo" type="text" id="txtTo"></td>
</tr>
<tr>
<td>Subject</td>
<td><input name="txtSubject" type="text" id="txtSubject"></td>
</tr>
<tr>
<td>Description</td>
<td><textarea name="txtDescription" cols="30" rows="4" id="txtDescription"></textarea></td>
</tr>
<tr>
<td>Form Name</td>
<td><input name="txtFormName" type="text"></td>
</tr>
<tr>
<tr>
<td>Form Email</td>
<td><input name="txtFormEmail" type="text"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Send"></td>
</tr>
</table>
<br>
<br>
<br>
</form>
</body>
</html>
Code (phpSendMailContactForm.php)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$strTo = $_POST["txtTo"];
$strSubject = $_POST["txtSubject"];
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: ".$_POST["txtFormName"]."<".$_POST["txtFormEmail"].">\nReply-To: ".$_POST["txtFormEmail"]."";
$strMessage = nl2br($_POST["txtDescription"]);
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>
Ref : PHP Sending Email Contact Form
|
|
|
|
|
Date :
2009-03-19 17:20:11 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ เด๋วจะลองเอาไปดูค่ะ ^^
|
|
|
|
|
Date :
2009-03-19 17:23:59 |
By :
lovelovesing |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำไม่ได้อ่ะค่ะ มันขึ้น
\nReply-To: ".$_POST["txtFormEmail"].""; $strMessage = nl2br($_POST["txtDescription"]); $flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error // if($flgSend) { echo "Email Sending."; } else { echo "Email Can Not Send."; } ?>
|
|
|
|
|
Date :
2009-03-24 16:10:34 |
By :
lovelovesing |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแก้โดยการลบ >ที่อยู่ข้างหน้าทิ้งไปมานก็หายนะค่ะ แต่คราวนี้ไม่มีอะไรขึ้นมาเรย อ่ะ T^T เฮ้อ นั่งดูทั้งวันก็ไม่เห็นว่าโค้ดมานจาผิตรงไหน แต่ทามายเราทำไม่ได้อ่ะ T^T
|
|
|
|
|
Date :
2009-03-24 23:48:21 |
By :
lovelovesing |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|