Twitter LogoFacebook Logo
Auth - Verifying Users
Using the Send Verification Email and Check if Email is Verified node to verify a user account.
By: King

Hello, in this video, I’ll show you how to use the “Send Verification Email” node in the FBP Firebase Plugin for Unreal Engine to verify a user’s email.

Image from Codeible.com

The node is only executable when a user is signed into the app. Otherwise nothing will happen.

The recommended approach for this node is to use it with the “Listen For Sign In Changes” node. This way, you can check if the user email is verified first and then allow them to use your app.

Image from Codeible.com

Add the callbacks

It has 2 callback pins when the operation is completed:

On Verification Email Sent
On Fail to Send Verification Email

The On Verification Email Sent callback will be called when it successfully sends the email. When that happens the signed in user will receive and email that asks them to click on a link to verify their email.

The On Fail to Send Verification Email callback will be called when an error occurred in the process.

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

Sign In