Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我面临使用表单输入的问题,我需要将其作为文本电子邮件发送然后放入数据库。
当我将其作为文本电子邮件发送时,换行符在纯文本电子邮件中显示为 \r\n\r\n,但在存储在数据库中时不会这样显示。
我正在使用 PHP/MySQL - 阻止 \r\n\r\n 字符出现在发出的电子邮件中的解决方法是什么?
谢谢你,亚历克斯
以 text/html 格式发送电子邮件并使用
<p> or <br>
标签
造成这种情况的一个可能原因可能是数据库清理(如 mysqli_real_escape_string)。我犯了同样的错误,甚至系统地清理从未传递到数据库的变量。