|
|
|
ส่ง mail แล้วไม่เป็นภาษาไทยครับ ส่ง mail แล้วไม่เป็นภาษาไทยครับ ตามหัวข้อเลยครับ |
|
|
|
|
|
|
|
ก็พิมพ์เป็นภาษาไทยไปสิครับ
|
|
|
|
|
Date :
2009-11-09 10:38:24 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ล้อเล่นนะตัวเธอ
ตามที่คุณ phpbasic บอกเลย หรือจะเอาละเอียดๆ ก็ข้างล่าง หรือระเอียดมากกว่านั้นลองเข้าไปอ่านดูครับ
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 (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 Mail
Ref : PHP Sending Email Contact Form
|
|
|
|
|
Date :
2009-11-09 10:43:36 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2009-11-09 10:50:15 |
By :
m |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แจ่มคับได้แล้ว ชอบคุณมากๆคับ
|
|
|
|
|
Date :
2010-02-01 00:51:52 |
By :
nadkk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่า มันไม่ได้อะค่ะ แถม มันมองว่า เมลล์ที่ส่งไปเป็น แสปม ด้วยอะ ทำไงคะ รบกวนด้วยนะคะ
|
|
|
|
|
Date :
2010-02-25 10:08:13 |
By :
nongcharmung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|