# File lib/devise/models/confirmable.rb, line 140
        def send_confirmation_instructions(attributes={})
          confirmable = find_or_initialize_with_errors(confirmation_keys, attributes, :not_found)
          confirmable.resend_confirmation_token if confirmable.persisted?
          confirmable
        end