0

在 /config/environment/development.rb 中:

config.action_mailer.asset_host = "http://192.155.90.155:3000"

在我的邮件正文中,我想看到:

<table background="http://192.155.90.155:3000/assets/fb.png">

<table background="<%= url_for('assets/bg.jpg', :only_path => false) %>">给我错误。

<table background="<%= url_for('assets/bg.jpg') %>">给了我意想不到的结果:

<table background="assets/fb.png">

有什么帮助吗?

4

1 回答 1

0

我找到了解决方案:

利用<table background="<%= asset_path 'bg.jpg' %>">

代替<table background="<%= url_for('assets/bg.jpg') %>">

于 2013-01-28T11:45:19.963 回答