ActionMailer中的relative_url_root等价于什么?

我尝试将其设置为default_url_options,但是它将参数附加在查询字符串中。

添加:skip_relative_url_root = false也不起作用。

使用:host = 'somehost.com/subdir' 可以使有效,但这是否合适?

谢谢!

最佳答案

一种更清洁的方法:

config.action_mailer.default_url_options = {
        :host => "somehost.com",
        :only_path => false,
        :script_name => "/subdir"
    }

Source

10-06 11:39