on Rails的Premailer圖像參考我使用premailer,和我的本地機器上我會在郵箱音符像這樣的鏈接:本地機器
file://localhost/assets/header_logo.png
代替
http://localhost:3000/assets/header_logo.png
如何配置premailer,以便在開發過程中url是正確的?
我嘗試添加
Premailer::Rails.config.merge!(base_url: "http://localhost:3000")
我開發的配置文件,但是服務器barfs說有沒有一種方法Premailer :: Rails.config。
我也這樣做:
config.action_mailer.default_url_options = {:host => 'localhost:3000'}
無濟於事......