> ## Documentation Index
> Fetch the complete documentation index at: https://docs.modelence.com/llms.txt
> Use this file to discover all available pages before exploring further.

# resendEmailVerification

[API Reference](/api-reference/modelence/client/functions/../../../index) / [modelence](/api-reference/modelence/client/functions/../../index) / [client](/api-reference/modelence/client/functions/../index) / resendEmailVerification

> **resendEmailVerification**(`options`): `Promise`\<`void`>

Defined in: [packages/modelence/src/auth/client/index.ts:143](https://github.com/modelence/modelence/blob/f614ecc6811cdda9670d612872c8ff49a49c5e28/packages/modelence/src/auth/client/index.ts#L143)

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

```ts theme={null}
await resendEmailVerification({ email: 'user@example.com' });
```

## Parameters

| Parameter       | Type                    | Description                                  |
| --------------- | ----------------------- | -------------------------------------------- |
| `options`       | \{ `email`: `string`; } | -                                            |
| `options.email` | `string`                | The email address to resend verification to. |

## Returns

`Promise`\<`void`>
