gpt4 book ai didi

ruby-on-rails - 电子邮件中的 CSS 图像与 Rails 3

转载 作者:行者123 更新时间:2023-12-03 15:13:06 24 4
gpt4 key购买 nike

我正在尝试使用 Rails 3 和 Action Mailer 发送电子邮件。电子邮件发送正常,但我希望它是 HTML 格式,带有一些基本样式,包括背景图像。我知道在用户允许显示图像之前,这些图像可能会被阻止,但我仍然认为最好链接到我的 Web 服务器上的图像。

名为 registration_confirmation.html.erb 的电子邮件模板如下所示:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style type="text/css">
body {
background: url(/images/mainbg_repeat.jpg) top repeat-x #cfcfcf;
margin: 0px 0px 0px 0px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #565656;
}

获取背景图像的 url 链接以包含完整主机以便背景显示在电子邮件中的最佳方法是什么?

最佳答案

针对我的其他回答,@Kevin 写道:

Thanks for the answer, I did think of doing something like that but I don't think it's possible with the way I have it setup. The mailer call is happening in a after_create call in a model rather than in a controller so I don't think I have access to the request object as you mentioned (or am I mistaken). I do have this in my mailer initializer: ActionMailer::Base.default_url_options[:host] = "localhost:3000" Can I somehow use that hos parameter in my mailer to make it work?



答案是肯定的。所有 rails url-construction helper 都应该使用这些 defualt_url_options。除了设置 :host ,您还应该通过设置此选项来强制它使用绝对网址:
ActionMailer::Base.default_url_options[:only_path] = false

另外,像这样设置 Assets 主机:
config.action_mailer.asset_host = 'http://localhost:3000'

然后只需使用 image_path helper 而不是手写 url,像这样:
<style type="text/css">
body {
background: url(<%= image_path('mainbg_repeat.jpg') %>) top repeat-x #cfcfcf;
}
</style>

注意:像这样直接设置 default_url_options 已被弃用。这是执行此操作的新方法:
config.action_mailer.default_url_options = {
:host => 'localhost:3000',
:only_path => false
}

关于ruby-on-rails - 电子邮件中的 CSS 图像与 Rails 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7520936/

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