如何从 Rails 3 邮件的电子邮件文本正文中删除大量空白/新行?

发布于 2024-11-06 08:09:56 字数 187 浏览 1 评论 0原文

我有一封电子邮件,在 Rails 3 应用程序中向用户显示 text_body。

问题是 text_body 在行/段落之间有大量空白,当我用 simple_format 显示它以显示格式化文本时,它有大量

有谁知道如何删除它以使电子邮件看起来像它应该的那样即浏览器页面上的格式正确吗?

多谢 瑞克

I have an email that i display the text_body to my users within my rails 3 application.

Problem is the text_body comes in with loads of white space between lines / paragraphs and when i display it with simple_format to show formatted text it has loads of
in.

Does anyone know how to remove this to make the email look like it should ie formatted properly on the page in browser ?

thanks a lot
Rick

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

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

发布评论

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

评论(3

浅笑轻吟梦一曲 2024-11-13 08:09:56

这是相当快的,

text.squeeze(" \t")

它在文本中的任何位置最多留下一个相邻的空格和/或制表符。

This is quite fast

text.squeeze(" \t")

It leaves at most one adjacent space and/or tab anywhere in the text.

意中人 2024-11-13 08:09:56

您可以简单地删除一些不需要的空格,例如:

text.strip.gsub(/\s*\n\s*/, "\n")

You can simply strip some unwanted spaces with something like:

text.strip.gsub(/\s*\n\s*/, "\n")

在梵高的星空下 2024-11-13 08:09:56

假设您使用 ERB 创建电子邮件,请注意 <% %>将在输出中添加新行。如果您想避免换行,请使用 <% -%>;反而。 (并不是说这是你的问题,但你可能想调查一下。)

Assuming you're using ERB to create the email, be aware that <% %> will add a new line in the output. If you want to avoid that new line, use <% -%> instead. (Not saying this is your issue, but you might want to look into it.)

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