// 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); }