最近我将可确认的模块添加到我的User类.我已经在我的应用程序中有一个非常好的邮件系统(Sidekiq,Sendgrid …),所以我创建了自己的“确认帐户”邮件.现在的问题是禁用Devise发送其默认电子邮件.有没有办法完全禁用Devise邮件系统?
添加:
>我想维护可确认的模块,因为我正在使用其属性和路由.
>我不能使用skip_confirmation!因为我希望用户确认他们的帐号.
>我只想禁用Devise邮件.
解决方法
使用来源,卢克:
# lib/devise/models/confirmable.rb # A callback method used to deliver confirmation # instructions on creation. This can be overriden # in models to map to a nice sign up e-mail. def send_on_create_confirmation_instructions send_devise_notification(:confirmation_instructions) end
所以在你的模型中覆盖这个方法什么都不做.