|
|
|
ส่งเมล์แล้วหัวข้อมันอ่านภาษาไทยไม่ได้แต่เนื้อเมล์อ่านได้ |
|
|
|
|
|
|
|
เราต้องกำหนดตรง header เป็น tis-620
ดังตัวอย่าง
Code (PHP)
$title="ยินดีต้อนรับสมาชิกใหม่แห่ง Jobshotelthailand.com";
$desc="
<html>
<title>ยินดีต้อนรับสมาชิกใหม่แห่ง Jobshotelthailand</title>
<body>
ยินดีต้อนรับ คุณ ".$name." ".$surname."<br>ทาง jobshotelthailand ยินดีต้อนรับสมาชิกใหม่ <br>Username ของคุณ คือ ".$username."<br>Password ของคุณ คือ ".$password."<br><br>กรุณา Login เข้าระบบตามลิงค์ <a href='www.webexpertgroup.com'>www.webexpertgroup.com</a><br>ขอบคุณที่ใช้บริการ
</body>
</html>
";
$strTo = $email;
$strSubject = $title;
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=tis-620" . "\r\n";
$headers .= "From: [email protected]";
$strMessage = $desc;
$flgSend = @mail($strTo,$strSubject,$strMessage,$headers); // @ = No Show Error //
|
|
|
|
|
Date :
2010-01-13 16:47:06 |
By :
eakalak28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค้ดผมประมาณนี้อะครับ ผมลองทำตามดูมันไม่ได้ ช่วยแนะด้วยนะครับ ขอบพระคุณล่วงหน้านะครับ
Code (PHP)
$mail->SetFrom('$msendfrom', '$ss_UserID');
$mail->AddReplyTo('$msendfrom', '$ss_UserID');
$mail->Subject = "MIME-Version: 1.0" . "\r\n";
$mail->Subject = "Content-type:text/html;charset=tis-620" . "\r\n";
$mail->Subject = "From: [email protected]";
$mail->Subject = "$msubjct";
$mail->AltBody = "$Description"; // optional, comment out and test
$mail->MsgHTML("$Description");
$address = "$mtxTo";
$mail->AddAddress("$mtxTo");
//$mail->AddAttachment("images\webmail-login.gif"); // attachment
$mail->AddAttachment("$mtxfileAttach"); // attachment
/*
if(copy($_FILES["$mtxfileAttach"]["tmp_name"],"myfile/".$_FILES["$mtxfileAttach"]["name"]))
{
echo "Copy/Upload Complete";
}
*/
if(!$mail->Send()) {
echo "Mailer Error: " . "$mail->ErrorInfo";
} else {
echo "Message sent!";
}
|
|
|
|
|
Date :
2010-01-19 10:25:49 |
By :
0mmm0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Subject = "Content-type:text/html;charset=tis-620" . "\r\n";
ต้องเป็น
Subject = "Content-type:text/html;charset=windows-874" . "\r\n";
|
|
|
|
|
Date :
2010-05-20 07:41:43 |
By :
หลงมา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|