I have the following AngularFireAuth methods.
// Send email verification when new user sign up
SendVerificationMail() {
return this.afAuth.auth.currentUser.sendEmailVerification();
}
// Reset Forgot password
ForgotPassword(email) {
return this.afAuth.auth.sendPasswordResetEmail(email);
}
Now I want that when I send the account verification email, to the user to
execute the verification link, the emailVerified parameter that its value
is false, is updated and changed to true, the same with the ForgotPassword.
Thanks
--
You received this message because you are subscribed to the Google Groups
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/angular/edff2e55-5808-4ea2-a5f1-af5b99c68c56%40googlegroups.com.