如何设置发送邮件中使用的Cuttlefish.io base URL?

How to set Cuttlefish.io base URL used in sent mails?

我正在使用 Cuttlefish.io (http://www.cuttlefish.io),我想知道如何设置链接和计数器图像中使用的基础 URL。默认情况下,链接基础 URL 是:

http://localhost:3000

但我想将它设置为一个合适的基数 URL,不同于默认的基数 URL。

怎么做?

通过将此添加到环境的 .rb 文件找到了操作方法:

config.action_mailer.default_url_options = { host: "#{config.cuttlefish_domain}" } 

然后通过以下方式将我想要的值放入环境中:

export CUTTLEFISH_DOMAIN=mydomain