onSubmit(formData) {
if(formData.valid) {
console.log(formData.value);
this.af.auth.createUser({
email: formData.value.email,
password: formData.value.password
}).then(
authState => {
authState.auth.sendEmailVerification();
this.router.navigate(['/login'])
}).catch(
(err) => {
console.log(err);
this.error = err;
})
}
在火力
,我設置了SendEmailVerfication喜歡這些信息,郵件可以正常發送,但在我的應用程序有用戶之間沒有區別誰不點擊這些驗證電子郵件點擊,如何有所作爲?
任何幫助表示讚賞