ActionMailer中的relative_url_root
相当于什么?
我已尝试在default_url_options
中进行设置,但它会将参数附加到查询字符串中。
添加:skip_relative_url_root = false
也不起作用。
使用:host = 'somehost.com/subdir'
确实有效,但这是否恰当?
谢谢!
答案 0 :(得分:3)
更简洁的方法:
config.action_mailer.default_url_options = {
:host => "somehost.com",
:only_path => false,
:script_name => "/subdir"
}
答案 1 :(得分:1)
将script_name
选项用于default_url_options
的{{1}}。基于this article。