gpt4 book ai didi

php - 邮件正文中带有法语字符的 Zend_Mail

转载 作者:可可西里 更新时间:2023-10-31 23:03:10 26 4
gpt4 key购买 nike

我正在尝试使用 Zend_Mail 发送邮件,代码如下:

 function sendMail() {

$config = array('auth' => 'login',
'username' => 'UserName',
'password' => 'Password',
'port'=>'27');

$mail = new Zend_Mail();

$mail->setBodyText($mailBody);

$mail->setFrom('example@host.com', 'The Company Name');
$mail->addTo('example@host.com', 'Recipient Name');
$mail->setSubject('Mail subject');
$mail->send(new Zend_Mail_Transport_Smtp('example@server.com', $config));
}

现在的问题是 $mailBody 有法语字符。例如:

Merci d'avoir passé commande avec Lovre. Voici le récapitulatif de votre commande

当查看发送的邮件时,同一行显示如下:

Merci d'avoir pass? commande avec Lovre. Voici le r?capitulatif de votre commande

重音被问号代替了!我尝试使用 utf8_encode 对邮件正文进行编码,但问题仍然存在。

注意:正文内容是使用 file_get_contents 从文本文件中读取的。

最佳答案

您必须在 Zend_Mail 构造函数中将编码设置为 UTF-8:

$mail = new Zend_Mail('UTF-8'); 

还要确保 $mailBody 包含 UTF-8 文本。

关于php - 邮件正文中带有法语字符的 Zend_Mail,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9094023/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com