PHP 电子邮件呈现问题
我发送 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们需要查看更多代码来提供帮助,但看起来您正在使用 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.