我在使用邮件中的rails配置地址时遇到了麻烦。我使用最新的ruby和rails版本,并希望从配置中添加邮件地址。 我正在使用邮件文件中的folling代码:
mail(to: Rails.configuration.email.sales , subject: 'Contact through jobs page')
在developer.rb页面上的我正在使用这段代码:
config.email.sales = 'sales@domain.com'
我不明白为什么这不起作用。 如果你可以帮助我会很棒。感谢
答案 0 :(得分:1)
由于您将其添加到development.rb中,您可以尝试使用以下内容:
mail(to: YourApplication::Application.config.email.sales,, subject: 'Contact through jobs page')
如果你的config.email.sales正常工作,那将返回'sales@domain.com'。)。