ถามเรื่องการส่งเมล์จากฟอร์มครับ ปกติเวลาเราทำฟอร์มให้กรอกเพื่อส่งข้อมูลติดต่อมายังเมล์ของผู้ดูแลเว็บมันจะมีว่า to, subject, message
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$strTo = "[email protected] ";
$strSubject = "Test Send Email";
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: Mr.Weerachai Nukitram<[email protected] >\nReply-To: [email protected] ";
$strVar = "My Message";
$strMessage = "
<h1>My Message</h1><br>
<table width='285' border='1'>
<tr>
<td><div align='center'><strong>My Message </strong></div></td>
<td><div align='center'><font color='red'>My Message</font></div></td>
<td><div align='center'><font size='2'>My Message</font></div></td>
</tr>
<tr>
<td><div align='center'>My Message</div></td>
<td><div align='center'>My Message</div></td>
<td><div align='center'>My Message</div></td>
</tr>
<tr>
<td><div align='center'>".$strVar."</div></td>
<td><div align='center'>".$strVar."</div></td>
<td><div align='center'>".$strVar."</div></td>
</tr>
</table>";
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>
Date :
2010-03-19 09:45:31
By :
webmaster
ขอบคุณครับพี่วิน แล้วถ้าสมมุติว่้าเราทำฟอร์มส่งเมล์ แล้วส่งได้ อยู่มาวันนึงมันดันส่งไม่ได้ซะเฉยๆ
มันมีสาเหตุมาจากอะไรได้บ้างครับ ทั้งๆที่โค๊ดก็เป็นโค๊ดเดิมไม่ได้แก้ไขอะไร
อย่างเมื่อวานผมส่งได้แล้ว มาวันนี้ลองรันแล้วก็ส่งใหม่ เมล์ได้ไม่เข้าซะงั้น งงครับ
Date :
2010-03-19 11:54:29
By :
maruk
เป็นที่ Server ครับ แนะนำให้ทดสอบการส่งไปหลาย ๆ ที่ดูครับ
Date :
2010-03-19 12:13:27
By :
webmaster
Load balance : Server 01