Skip to main content

Type Alias: ResendSignUp()

ResendSignUp = (email) => Promise<SuccessResponse | AuthError>

Resends the sign-up confirmation code to the user's email. This is useful when a user didn't receive the original confirmation code or when the code has expired.

Parameters

email

string

Email address of the user account

Returns

Promise<SuccessResponse | AuthError>

A promise resolving to a success response or error information

Example

window.mimeeqAuth.authorization.resendSignUp('[email protected]')
.then(response => {
if (response.success) {
console.log('Confirmation code has been resent to your email');
} else {
console.error('Failed to resend confirmation code');
}
});

Fires

@mimeeq#mimeeq-resend-signup-confirm-code