Please, can anyone tell me how to send reset password email? Thank you.
Please refrain from cross posting in multiple issues. The original closed issue says to use the regular SDK.
var auth = firebase.auth();
var emailAddress = "[email protected]";
auth.sendPasswordResetEmail(emailAddress).then(function() {
// Email sent.
}, function(error) {
// An error happened.
});
how to use regular SDK.with angularfire2?
@rashnk import it like this import * as firebase from 'firebase';
See #374
Where is the function to send a code to reset the password??
I can see that "confirmPasswordReset(code, newPassword)" but without a function to send the reset code, don't make sense ....
Most helpful comment
Please refrain from cross posting in multiple issues. The original closed issue says to use the regular SDK.