MCPcopy Create free account
hub / github.com/firebase/quickstart-js / sendVerificationEmailToUser

Function sendVerificationEmailToUser

auth/email-password.ts:108–113  ·  view source on GitHub ↗

* Sends an email verification to the user.

()

Source from the content-addressed store, hash-verified

106 * Sends an email verification to the user.
107 */
108function sendVerificationEmailToUser() {
109 sendEmailVerification(auth.currentUser!).then(function () {
110 // Email Verification sent!
111 alert('Email Verification Sent!');
112 });
113}
114
115function sendPasswordReset() {
116 const email = emailInput.value;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected