module Devise::Models::Confirmable

def resend_confirmation_instructions

Regenerates the token if the period is expired.
Resend confirmation token.
def resend_confirmation_instructions
  pending_any_confirmation do
    send_confirmation_instructions
  end
end