> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-actions-triggers-prototype.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Describes how to resend verification emails to users via the Auth0 Management Dashboard and the Auth0 Management API.

# Resend Verification Emails

If you need to resend a verification email to a user, you can resend it using the Auth0 User Management Dashboard or the Auth0 <Tooltip tip="Management API: A product to allow customers to perform administrative tasks." cta="View Glossary" href="/docs/glossary?term=Management+API">Management API</Tooltip>.

<Tabs>
  <Tab title="Use Auth0 Dashboard">
    You can use the Auth0 Dashboard to resend a verification email to a user.

    1. In the Dashboard, go to [**User Management > Users**](https://manage.auth0.com/#/users).
    2. Select the user.
    3. Select the **Actions** dropdown menu, and then select **Send Verification Email**.

    If you enable [Multiple Custom Domains](/docs/customize/custom-domains/multiple-custom-domains), you have the option **Domain** to select the notification domain for your tenant.
  </Tab>

  <Tab title="Use Auth0 Management API">
    You can use the Auth0 Management API to resend a verification email to a user.

    1. Get a [Management API access token](/docs/secure/tokens/access-tokens/management-api-access-tokens) with the `update:users` scope.
    2. Call the Management API [Send an email address verification email](https://auth0.com/docs/api/management/v2#!/Jobs/post_verification_email) endpoint with the user's `user_id`.

    #### Request example

    ```json lines theme={null}
    {
       "user_id":"auth0|62463410c0242d00699461c8"
    }
    ```

    #### Response example

    ```json lines theme={null}
    {
       "type":"verification_email",
       "status":"pending",
       "created_at":"2022-03-31T23:08:05.612Z",
       "id":"job_PyfpRHlmpkSoDmCv"
    }
    ```

    If you enable [Multiple Custom Domains](/docs/customize/custom-domains/multiple-custom-domains), you need to include the `auth0-custom-domain` HTTP header. To learn more, review [Multiple Custom Domains](/docs/customize/custom-domains/multiple-custom-domains#customize-email-handling-using-the-management-api).

    #### Check job status

    You can check the status of the job created with the Management API [Send an email address verification email](https://auth0.com/docs/api/management/v2#!/Jobs/post_verification_email) endpoint.

    1. Get the job's `id` (returned in the response).
    2. Call the Management API [Get a job](https://auth0.com/docs/api/management/v2#!/Jobs/get_jobs_by_id) endpoint with the job's `id`.

    ##### Response example

    ```json lines theme={null}
    {
       "type":"verification_email",
       "status":"completed",
       "created_at":"2022-03-31T23:08:05.612Z",
       "id":"job_PyfpRHlmpkSoDmCv"
    }
    ```
  </Tab>
</Tabs>
