gpt4 book ai didi

ruby-on-rails - 将 premailer gem 与 Rails 2.X 应用程序集成

转载 作者:数据小太阳 更新时间:2023-10-29 08:01:09 25 4
gpt4 key购买 nike

我有一个 Rails 2.3 应用程序,想集成 premailer gem给它。我发现如何为 Rails 3.X 应用程序做到这一点: How to Integrate 'premailer' with Rails任何人都知道如何为 action mailer 2.3.10 做这件事?

最佳答案

我在过去的几天里花了很多时间在这上面,但似乎没有很好的解决方案。可以显式呈现消息,然后通过 Premailer 传递结果,但如果与多部分电子邮件和 HTML 布局相结合,并且如果模板使用 ASCII-8BIT 以外的其他编码,它会变得困惑。

在没有多部分的直接 HTML 电子邮件中,假设使用 ASCII-8BIT 编码模板,这对我有用:

def some_email
recipients "Reciever <reciever@example.com>"
from "Sender <sender@example.com>"
subject "Hello"
content_type "text/html"

message = render_message("some_email", { }) # second argument is a hash of locals
p.body = Premailer.new(message, with_html_string: true).to_inline_css
end

但是,如果模板使用 ASCII-8BIT 以外的其他编码进行编码,Premailer 会破坏所有非 ASCII 字符。 Premailer 存储库中合并了一个修复程序,但此后没有发布任何版本。使用最新的修订版并调用 Premailer.new(message, with_html_string: true, input_encoding: "UTF-8").to_inline_css 或类似的方法应该有效。合并提交是 https://github.com/alexdunae/premailer/commit/5f5cbb4ac181299a7e73d3eca11f3cf546585364 .

在多部分电子邮件的情况下,我还没有真正让 ActionMailer 在内部使用正确的内容类型来呈现模板。这导致通过模板文件名的隐式键入不起作用,结果是布局被错误地应用于文本版本。一个解决方法是明确地不对文本版本使用任何布局,从而产生类似这样的结果(注意模板名称):

def some_multipart_email
recipients "Reciever <reciever@example.com>"
from "Sender <sender@example.com>"
subject "Hello"
content_type "text/html"

part "text/html" do |p|
message = render_message("some_email_html", { })
p.body = Premailer.new(message, with_html_string: true).to_inline_css
end

part "text/plain" do |p|
p.content_type = "text/plain"
p.body = render(file: "some_email_text", body: { }, layout: false)
end
end

关于ruby-on-rails - 将 premailer gem 与 Rails 2.X 应用程序集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11191341/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com