4

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 

任何人都知道在哪裏可以掛接到設計出應對讓它使用reconfirmable電子郵件,而不是使用默認的文本確認一個單獨的電子郵件文本?

回答