RoR:如何在纯文本电子邮件中获取空/新行
我正在尝试在纯文本电子邮件中获取一个空行。我尝试过使用 \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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.