通过PHP发送带有“è”或“à”等重音字母的电子邮件

时间:2015-08-03 14:26:44

标签: php html email

我有一个像

这样的字符串
$mail_sblocco='Il tuo account è stato sbloccato,<br>cordiali saluti.<br>';

如果我用字符串转换字符串 $corpomail="<html><body>".htmlspecialchars_decode($mail_sblocco)."</body></html>";,我在浏览器中看到了一切。但是在网络邮件中我看到了像“¨”这样的奇怪字符。 我正在尝试用php发送这封电子邮件。 标题是

$header="From: example@ex.com\r\n";
$header.= "MIME-Version: 1.0\r\n";
$header.= "Content-type: text/html; charset=\"iso-8859-1\"\r\n";
$header.="Content-Transfer-Encoding: 7bit\r\n";

在我看到的浏览器上

Il tuo account è stato sbloccato,
cordiali saluti.

在网络邮件上,我看到了

Il tuo account è stato sbloccato,
cordiali saluti.

我该如何解决这个问题? 如果您需要更多信息,请告诉我。 提前谢谢!

0 个答案:

没有答案