我是php新手,试图通过php邮件功能发送电子邮件。在Gmail帐户中,电子邮件正常显示,但除了gmail之外,我在电子邮件正文中收到了html标签作为文本。
以下是我的代码段:
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=ISO-8859-1' . "\r\n";
$headers .= "Reply-To:abc@abc.com" . "\r\n";
$headers .= "BCC: $bcc" . "\r\n";
$headers .= "From: $from" . "\r\n";
我正在使用的邮件功能是:
mail( $to, $subject, $body, $headers )
答案 0 :(得分:0)
得到了解决方案,我只是将'\ r \ n'替换为'\ n',它开始适用于每个邮箱。
由于