PHP 电子邮件呈现问题

发布于 2024-11-09 13:01:12 字数 424 浏览 0 评论 0原文

我发送 HTML 电子邮件,除了在每个标签后添加标签
之外,一切正常。

发送前

<div>Content 1</div>
<img src="http://mylink.com/img.png" />
<div>Content 2</div>

发送后

<div>Content 1</div>
<br>
<img src="http://mylink.com/img.png" />
<br>
<div>Content 2</div>
<br>

有什么问题吗?为什么要添加 br 标签???

I send HTML email, everything is ok except that it adds the tag <br> after each tag.

Before sending

<div>Content 1</div>
<img src="http://mylink.com/img.png" />
<div>Content 2</div>

After sending

<div>Content 1</div>
<br>
<img src="http://mylink.com/img.png" />
<br>
<div>Content 2</div>
<br>

Whats the wrong? why it is adding the br tag????

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

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

发布评论

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

评论(1

待天淡蓝洁白时 2024-11-16 13:01:12

我们需要查看更多代码来提供帮助,但看起来您正在使用 RTE/WYSIWYG 编辑器,它会自动将 \n (换行符)转换为
尝试提供帮助。或者,您通过格式化函数传递电子邮件正文,该函数将以如下方式格式化文本。

We'd need to see more code to help, but it looks like you are using a RTE/WYSIWYG editor which automatically converts \n (newlines) into <br> to try and be helpful. Or, you are passing the email body through a formatting function that will format the text in a way like this.

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