I'm trying to impliment the code as found here: https://firebase.google.com/docs/auth/web/manage-users#send_a_password_reset_email
var auth = firebase.auth(); var emailAddress = "[email protected]"; auth.sendPasswordResetEmail(emailAddress).then(function() { // Email sent. }).catch(function(error) { // An error happened. });
But I can't find the sendPasswordResetEmail method in firebase admin.
sendPasswordResetEmail
Anyway I can do this on the backend?
1.4m articles
1.4m replys
5 comments
57.0k users