Skip to content

Instantly share code, notes, and snippets.

@atanasovdejan
Created August 4, 2018 08:38
Show Gist options
  • Save atanasovdejan/84b198b6a6a290e6e84049a1d7688f41 to your computer and use it in GitHub Desktop.
Save atanasovdejan/84b198b6a6a290e6e84049a1d7688f41 to your computer and use it in GitHub Desktop.
Verify Email with Firebase
func sendEmailVerification(_ callback: ((Error?) -> ())? = nil){
Auth.auth().currentUser?.sendEmailVerification(completion: { (error) in
callback?(error)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment