Twitter LogoFacebook Logo
Auth - Reset Passwords
Using the “Send Password Reset Email” node to reset account password.
By: King

Hello, in this tutorial, I’ll show you how to use the “Send Password Reset Email” node in the FBP Firebase Plugin for Unreal Engine to send password reset emails to users in Firebase.

Image from Codeible.com

The node has 3 pins:

1 for the email of the account you want to send the password reset email to
2 callbacks that will be called after the operation is finished to let you know if the email was sent successfully or not. 

Add the callbacks

To create the callbacks, click and hold on the callback pin from the node. Then drag and let go on an empty spot on the blueprint.

Select “Add Event” then “Add Custom Event.” 

Image from Codeible.com

The On Password Reset Email Sent callback will be called when the email is sent. It also returns the email that it sent to.

The On Fail to Send Password Reset Email callback will be called when an error occurred in the process. Use the Error Message that it returns to identify the error.

Image from Codeible.com

Sign In