所以我试图覆盖“发件人”字段,因此它实际上包含邀请者的姓名,而不是系统默认值。
我已经按照这里的说明https://github.com/plataformatec/devise/wiki/How-To:-Use-custom-mailer
我已经设置了自定义邮件程序,但我遇到的问题是opts
,与文档中的示例不同,它看起来不像是可以修改的对象。
有人有什么建议吗?
class MCDeviseMailer < Devise::Mailer
helper :application # gives access to all helpers defined within `application_helper`.
def invitation_instructions(record)
# opts[:from] = "#{resource.invited_by.full_name rescue "Mission Control"} <notifications@#{DOMAIN}>"
super
end
end
非常感谢!