Send Password Reset Email

Use the sendPasswordResetEmail method to send a password reset email to the user, allowing them to reset their password.

Method

await FirebaseApp.firebaseAuth?.sendPasswordResetEmail(email);

Parameters

  • email (String): The email address of the user who needs to reset their password.

Return

  • void: This method does not return a value.

This method sends a password reset email to the specified email address, enabling the user to reset their password.

Last updated