ruby-on-rails – 设计可重新配置,使用单独的邮件模板重新确认电子邮件?

Devise支持可重新配置选项,当用户更改电子邮件时,他们必须确认新电子邮件.

但是,使用标准确认邮件模板.我想为必须重新确认的电子邮件使用单独的邮件模板.

devise的registrations_controller.rb:

def update

    self.resource = resource_class.to_adapter.get!(send(:"current_#{resource_name}").to_key)
    prev_unconfirmed_email = resource.unconfirmed_email if resource.respond_to?(:unconfirmed_email)

    if resource.update_with_password(resource_params)
      if is_navigational_format?
        flash_key = update_needs_confirmation?(resource,prev_unconfirmed_email) ?
            :update_needs_confirmation : :updated
        set_flash_message :notice,flash_key
      end
      sign_in resource_name,resource,:bypass => true
      respond_with resource,:location => after_update_path_for(resource)
    else
      clean_up_passwords resource
      respond_with resource
    end
  end

任何人都知道在哪里挂钩Devise让它使用单独的电子邮件文本来重新确认电子邮件,而不是使用认的确认文本?

解决方法

看看这个问题:

How to send two different emails for devise confirmable and devise reconfirmable?

您应该有权访问@ resource.pending_reconfirmation吗?在设计confirm_instructions邮件.

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...