使用 erb 生成纯文本电子邮件

发布于 2024-11-26 09:00:30 字数 179 浏览 2 评论 0原文

我使用 ActionMailer 3.0.9 和 erb 模板生成纯文本电子邮件。一切都很顺利,除了我的电子邮件包含异常的回溯,其中包含“<”、“””等字符,这些字符被更改为“& lt;”、“& quot;” ETC。 所以我的问题是:如何配置 erb/mailer 以便它不会将这些字符扩展为“&(...);”?

I'm generating plain text emails using ActionMailer 3.0.9 and erb template. Everything goes well except that my emails contain backtraces of exceptions with characters like '<', '"' etc. which are changed onto '& lt;', '& quot;' etc.
So my question is: how to configure erb/mailer so it doesn't expand these characters into '&(...);'?

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

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

发布评论

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

评论(1

梨涡少年 2024-12-03 09:00:30

在您看来,使用 <%=raw ... %> 然后您的 <%= %> 内的变量内容不会被逃脱。

In your view, use <%=raw ... %> then your contents of the variable inside the <%= %> won't be escaped.

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