|
|
|
สอบถามเรื่องการส่งเมล์ค่ะ ปัญหาคือส่งไม่ผ่านทุกรอบ เลยไม่แน่ใจว่าเป็นที่โค๊ด หรือ ที่Hostค่ะ |
|
|
|
|
|
|
|
Code (PHP)
<?php
$strTo = "[email protected]";
$strSubject = "Test Send Email";
$strHeader = "Content-type: text/html; charset=windows-874\r\n"; // or UTF-8 //
$strHeader .= "From: Mr.Weerachai Nukitram<[email protected]>\r\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.";
}
?>
เอาไปเปรียบเทียบดูนะครับ
ข้อสังเกตุ
Code (PHP)
<?php
//coding here
?>
|
|
|
|
|
Date :
2013-11-16 11:42:18 |
By :
geidtiphong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา @ หน้า mail ออกครับ จะได้เห็นว่า error เพราะอะไร
|
|
|
|
|
Date :
2013-11-17 01:52:41 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|