RoR:如何在纯文本电子邮件中获取空/新行

发布于 2024-10-04 04:24:01 字数 164 浏览 8 评论 0原文

我正在尝试在纯文本电子邮件中获取一个空行。我尝试过使用 \n\n 和 \r\n 但在这两种情况下,这些字符都仅显示为普通文本,而不是空行。

我做错了什么?

(我正在 Mozilla Thunderbird 中以纯文本视图查看多部分电子邮件。)

感谢您的帮助! 汤姆

I'm trying to get an empty line in a plain text email. I've tried with \n\n and with \r\n but in both cases, these characters are just displayed as normal text, instead of an empty line.

What am I doing wrong?

(I'm viewing a multipart email in plain text view in Mozilla Thunderbird.)

Thank you for any help!
Tom

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

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

发布评论

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

评论(1

左岸枫 2024-10-11 04:24:01

在 Ruby 中,有两组引用规则,一组用于单引号和 %q 构造,另一组用于双引号和 %Q。单引号字符串将转义序列视为字符串文字并按原样打印它们。双引号字符串将导致 Ruby 处理转义序列并插入正确的替换。

In Ruby you have two sets of quoting rules, one for single quotes and the %q construct, and another for double quotes and %Q. Single quoting strings treats escape sequences as string literals and prints them as such. Double quoting a string will cause Ruby to process the escape sequences and insert the correct substitutions.

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