|
|
|
โค้ดส่งเมลหลังจากสมัครสมาชิกเออเร่อครับ Warning: Unexpected character in input: '\' (ASCII=92) state=1 |
|
|
|
|
|
|
|
line ไหนครับ หรือไม่ลองดูตัวนี้ครับ
Code (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.";
}
?>
|
|
|
|
|
Date :
2012-11-06 09:13:03 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนนี้ได้แล้วครับขอบคุณมากครับแต่ติดตรงนี้นิดนึงครับ
Code (PHP)
$to = $emails;
$subject = "คุณได้สมัครสมาชิกร้าน แล้ว";
$massage = "สวัสดีค่ะคุณ $name
username และ password ในการใช้งานเว็บไซต์ของท่านคือ
----------------------------
username : $user
password : $pwd
----------------------------
สามารถเยี่ยมชมเว็บไซต์ได้ที่ http://www.sesonshopping.com/
กรุณาอย่าตอบกลับ email นี้หากต้องการติดต่อแม่ค้าสามารถติดต่อได้ที่
086-9195895 เมรับสาย หรือ email [email protected]
$headers .= 'Content-type: text/html; charset=utf-8' . \r\n";
$headers = "From; [email protected]";
@mail ($to,$subject,$massage,$headers);
มันส่ง .= 'Content-type: text/html; charset=utf-8' . ไปที่อีเมลด้วยครับ แก้ไม่ตกเลยครับ -*-
|
|
|
|
|
Date :
2012-11-06 14:10:41 |
By :
vanavat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูของผมมันเป็นหรือเปล่าครับ ที่ผมแนะนำครับ
|
|
|
|
|
Date :
2012-11-06 14:37:47 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$header= "Content-type: text/html; charset=utf-8\n";
$header.="from: www.ThaiCreate.Com<[email protected]>\nReply-To: [email protected]";
$subject= "=?UTF-8?B?".base64_encode("ThaiCreate.Com | ฟรีบทความสอน Windows Phone 7 และ Windows Phone 8 #Oct")."?=";
ผมก็ใช้อยู่แค่นี้ครับ อันนี้สำหรับภาษาไทย
|
|
|
|
|
Date :
2012-11-07 09:20:42 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|