我已按照Rails中的设计邮件程序的说明进行操作:https://github.com/plataformatec/devise/wiki/How-To:-Use-custom-mailer
我的问题是被覆盖函数的参数是缺少值
应用程序/邮寄者/ my_mailer.rb
def confirmation_instructions(record, token, opts={})
# record contains the User<ActiveRecord>
# token = nil
# opts = nil
end
答案 0 :(得分:2)
您必须在方法中调用super
才能获得设计的默认行为。