Rails 3.0.9 中的操作邮件程序和 url 生成

发布于 2024-12-04 13:59:22 字数 383 浏览 0 评论 0原文

所以我意识到 Rails 邮件程序在生成 url 方面需要帮助。我想要带有外部提供的图像的 HTML 电子邮件(无附件),所以我设置了两者:

  config.action_mailer.default_url_options = { :host => "localhost:3000" }
  config.action_mailer.asset_host = "http://localhost:3000

并且我的邮件程序模板中发生了两件事:

  1. 它讨厌使用 image_tag。只是带有操作视图模板错误
  2. url_for 的 barfs 对于未命名的路由没有任何作用。它不应该前置 asset_host 吗?公开资产?

So I realize that Rails mailers need help in generating urls. I want HTML email with images served externally (no attachments) so I've set both:

  config.action_mailer.default_url_options = { :host => "localhost:3000" }
  config.action_mailer.asset_host = "http://localhost:3000

and two things happen in my mailer template:

  1. It hates the use of image_tag. Just barfs with an action view template error
  2. url_for does nothing for unnamed routes. shouldn't it prepend the asset_host? for assets in public?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文