gpt4 book ai didi

php - php @mail 发送的消息无法解析 html

转载 作者:行者123 更新时间:2023-12-04 19:38:00 25 4
gpt4 key购买 nike

我正在将 Web 服务器从托管服务器移植到 Centos 上的私有(private)服务器,并且我正在尝试调整每一件事。现在我正在尝试通过@mail 发送电子邮件;我设法通过稍微调整配置来做到这一点,但是当消息显示在客户端上时,它会显示 html 源代码而不是显示它。消息的来源(我在底部报告的一部分)似乎很好;会是什么呢?

-PHP-Originating-Script: 500:mailListItInarrivo.php
From: info@inarrivo.net
Reply-To: info@inarrivo.net
Content-Type: multipart/alternative; boundary="PHP-alt-ac65ac6e336bbb702036bb1b60fa2bc6"

--PHP-alt-ac65ac6e336bbb702036bb1b60fa2bc6
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

如您所见,html 部分缺少:
--PHP-alt-531031ef9065eeb8948b4338f95fdd14 部分。
但这更有趣,因为 php 脚本与旧脚本相同并且存在命令:
--PHP-alt-<?php echo $random_hash; ?> 
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<?php echo $greeting; ?>
<?php echo $content; ?>
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

最佳答案

不要发送冲突的 mime 类型:

--PHP-alt-ac65ac6e336bbb702036bb1b60fa2bc6
Content-Type: text/plain; charset="iso-8859-1" <--- it's a bird!
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="iso-8859-1" <--- it's a plane!

由于您获得的是原始 html 代码,显然 FIRST 内容类型是在您的邮件客户端中生效的内容类型。

关于php - php @mail 发送的消息无法解析 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27296518/

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