Skip to main content
API Reference / modelence / client / resendEmailVerification
resendEmailVerification(options): Promise<void>
Defined in: packages/modelence/src/auth/client/index.ts:80 Resend the verification email for a given email address. The email is only sent if the address is registered and not yet verified. A generic response is always returned to avoid leaking account information.

Example

await resendEmailVerification({ email: 'user@example.com' });

Parameters

ParameterTypeDescription
options{ email: string; }-
options.emailstringThe email address to resend verification to.

Returns

Promise<void>