|
|
|
รบกวนสอบถามครับ ทำไมพอส่งเมล์แล้วอีกเมล์ขึ้นภาษาไทยปกติแต่อีเมล์ขึ้นเป็นภาษาต่างดาวอ่ะครับ |
|
|
|
|
|
|
|
Code (PHP)
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
ลองใส่ตัวนี้ดูครับ
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 :
2011-06-30 10:41:57 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่สามารถปรับโค้ดจากตัวเก่าของผมได้เหรอครับ คืออันเก่ามันสมบูรณ์หมดแล้วอ่ะครับ
เหลือแต่แค่เป็นภาษาต่างดาวเท่านั้น
|
|
|
|
|
Date :
2011-06-30 11:06:21 |
By :
japon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็แค่เอาโค๊ดพี่วินไปวางไว้ส่วนบน ก็ใช้ได้แล้วครับ
|
|
|
|
|
Date :
2011-06-30 11:18:22 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แน่นอนคับ เพียงแต่คุณต้องทำเอง เอามาให้ได้แค่ตัวอย่าง ลองอ่านดูเองและลองเอง จะได้รูว่าคุณขาดอะไรไป
Code (PHP)
if ($config['mail_use'] == 'phpmailer')
{
// ส่งด้วย phpmailer
// #modify code from https://www.thaicreate.com/php/php-send-email-smtp-gmail-account.html
$mail = new PHPMailer();
$mail->CharSet = 'UTF-8'; // บรรทัดนี้ เพิ่มใหม่ Test need.
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
// $mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = $config['smtp_host']; // sets GMAIL as the SMTP server
$mail->Port = $config['smtp_port']; // set the SMTP port for the GMAIL server
$mail->Username = $config['smtp_user']; // GMAIL username
$mail->Password = $config['smtp_pass']; // GMAIL password
$mail->From = $config['smtp_user']; // "[email protected]";
$mail->AddReplyTo = $config['smtp_user']; // Reply
$mail->FromName = "Vote-Alert"; // set from Name
$mail->Subject = 'ข้อความ จากระบบ Vote-Alert';
$mail->Body = $unique_email_content;
$mail->AddAddress($email);
$mail->set('X-Priority', '1'); //Priority 1 = High, 3 = Normal, 5 = low
if ($mail->Send())
{
// ส่งอีเมล ผ่าน
}
else
{
// ส่ง ไม่ผ่าน
echo 'ส่งด้วย smtp ไม่ผ่าน Test need';
}
}
elseif ($config['mail_use'] == 'mail')
{
// ส่งด้วยฟังชั่น mail()
$charset="UTF-8";
$subject='ข้อความ จากระบบ Vote-Alert';
$encoded_subject="=?$charset?B?".base64_encode($subject)."?=\n";
//$to = implode(', ', $email_array);
//example code and modify from php manual
$headers = "From: Vote-Alert\n"
. "Content-Type: text/html; charset=$charset; format=flowed\n"
. "MIME-Version: 1.0\n"
. "Content-Transfer-Encoding: 8bit\n"
. "X-Mailer: PHP\n";
$body = $unique_email_content;
if(mail($email, $encoded_subject, $body, $headers))
{
// ส่งสำเร็จ
}
else
{
echo 'ส่งด้วย mail() ไม่ผ่าน Test need';
}
สังเกตุบรรทัด header, encode, title และ body
http://www.pjgunner.com
|
ประวัติการแก้ไข 2011-06-30 11:21:45
|
|
|
|
Date :
2011-06-30 11:19:16 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณสำหรับทุกความเห็น Case ผม รู้สึกจะเป็นประมาณนี้อ่ะครับ
https://www.thaicreate.com/php/forum/048129.html
คือเมล์ที่เปิดใน outlook จะอ่านไม่ออก พอจะมีวิธีแก้ไหมอ่ะครับ ลองแล้วก็ยังไม่ผ่านซักที
อันนี้คือ code ของผมที่เปลี่ยนอยู่ตอนนี้ครับ
Code (PHP)
<?
$strTo = "[email protected]";
$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.";
}
?>
|
|
|
|
|
Date :
2011-06-30 14:39:17 |
By :
japon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
หน้า Form อย่่าลืมใส่ตัวนี้ด้วยครับ ผมใช้ UTF-8 ไม่มีปัญหาเรื่องภาษาไทยเลยครับ
|
|
|
|
|
Date :
2011-06-30 15:01:58 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|