如何发送的验证邮件在火力和忘记密码的链接在火力扑版本

问题描述:

如何发送的验证邮件火力忘在火力扑版本密码链接如何发送的验证邮件在火力和忘记密码的链接在火力扑版本

firebase_auth插件,我没有发现任何忘记密码方法有两个

看着current master任何其他方式,我不认为这是没有实现。也许在flutter issue tracker中提交功能请求?

火基地提供的选项中重新设置用户 的密码,这个查询会发送一个网址为正在重置密码的用户的邮件编号

var auth = firebase.auth(); 
var emailAddress = "<Mail_id >"; 

auth.sendPasswordResetEmail(emailAddress).then(function() { 
    // Email sent. 
    console.log("welcome") 
}).catch(function(error) { 
    // An error happened. 
});