邮件 php 标题问题

发布于 2024-12-03 07:04:58 字数 902 浏览 2 评论 0 原文

我使用下面的代码发送一条消息并且有效:

$headers = 'From: Online <'.$emailTo.'>\r\n'; 
$headers .= 'Reply-To: '.$emailTo.'\r\n';
$headers .= 'Return-Path: Online <'.$emailTo.'>\r\n';
$headers .= "Bcc: [email protected]\r\n";
$headers .= "Bcc: [email protected]\r\n";

问题是当我单击“回复”时,电子邮件在字段中显示为:

在线\r\n回复至:[电子邮件受保护]\r\n返回路径:在线\r\n密件抄送:[电子邮件受保护]

有什么想法可以帮助我吗? 干杯M

I sending a message with this code below and works:

$headers = 'From: Online <'.$emailTo.'>\r\n'; 
$headers .= 'Reply-To: '.$emailTo.'\r\n';
$headers .= 'Return-Path: Online <'.$emailTo.'>\r\n';
$headers .= "Bcc: [email protected]\r\n";
$headers .= "Bcc: [email protected]\r\n";

The problem is When I click in Reply on the email appear like this in the field to:

Online \r\nReply-To: [email protected]\r\nReturn-Path: Online \r\nBcc: [email protected]

Any idea that can help me?
Cheers M

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

路弥 2024-12-10 07:04:58

\r\n 必须用双引号括起来,在单引号字符串中 它们按字面意思理解

\r and \n must be enclosed in double quotes, in single quoted strings they are taken literally.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文