乌尔都语支持使用 phpmailer 向 hotmail 和 yahoo 发送电子邮件

Urdu Language Support for sending email to hotmail and yahoo with phpmailer

我正在使用 phpmailer 将我自动生成的 text/mail 发送给用户。邮件正文包含乌尔都语 (Unicode),google 完美显示,但 hotmail 和 yahoo 邮件显示邮件如下快照所示:

这是一个错误还是我缺少用于发送电子邮件的任何 Unicode 支持参数-

您需要确保您的代码告诉 PHPMailer 使用 UTF-8:

$mail->CharSet = 'UTF-8';

请注意 属性 名称 CharSet 区分大小写,因此请确保它完全匹配。您还必须确保您的内容也是 UTF-8 格式。