|
|
|
ช่วยหน่อยครับ ตอบกลับเมล์อัตโนมัติ ผมได้นำโค๊ตนี้ไปใช้ และผมได้ใส่อีเมล์ผู้ส่งแล้ว แต่ทำไมอีเมล์ที่ส่ง |
|
|
|
|
|
|
|
ลองใช้แบบนี้ดูนะครับ
$to = "[email protected]";
$subject = "=?windows-874?B?".base64_encode('ทดสอบการส่งเมลล์')."?=";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=windows-874 \r\n";
$headers .= "From: [email protected] \r\n";
mail( $to, $subject, $msg, $headers );
header("location:file.php");
|
|
|
|
|
Date :
2009-05-30 15:18:23 |
By :
adaaugusta |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สวัสดีครับ ลองดู Contact Form น่ะครับ
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>
|
|
|
|
|
Date :
2009-05-30 21:35:25 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณมากครับผม
|
|
|
|
|
Date :
2009-06-01 13:20:09 |
By :
บี้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|