PHP邮件功能Outlook UTF8 [英] PHP mail function outlook UTF8

查看:68
本文介绍了PHP邮件功能Outlook UTF8的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的脚本:

$message = "
<html>
<head>
  <title>Birthday Reminders for August</title>
  <style>td,tr{border:solid 1px black;}</style>
  <meta charset='UTF-8'>
</head>
<body>
  <table>
  <tr><td>სახელი</td><td>{$_POST['firstname']}</td></tr>
  <tr><td>გვარი</td><td>{$_POST['lastname']}</td></tr>
  <tr><td>დაბადების თარიღი</td><td>{$_POST['birthday']}</td></tr>
  <tr><td>მოქალაქეობა</td><td>{$_POST['cityzen']}</td></tr>
  <tr><td>პირადი ნომერი</td><td>{$_POST['id_number']}</td></tr>
  </table>
</body>
</html>
";

// To send HTML mail, the Content-type header must be set
//MUSHA
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; utf-8' . "\r\n";

// Additional headers
$headers .= 'To: Mary <aaa.wwww@gmail.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\n";

// Mail it
mail($to, $subject, $message, $headers);

我已经在gmail.com,yahoo.com,outlook.com上对其进行了测试,并且一切正常.

I've tested it on gmail.com, yahoo.com, outlook.com and everything works great.

但是在MS Outlook中,它存在UTF-8问题.

but in MS Outlook it has problem of UTF-8.

推荐答案

尝试使用:

$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";

这篇关于PHP邮件功能Outlook UTF8的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆