> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/users/llms.txt)
> Source: https://docs.saleor.io/api-reference/users/mutations/send-confirmation-email

# sendConfirmationEmail Mutation

Sends a notification confirmation.

Requires the AUTHENTICATED\_USER permission.

Triggers the following webhook events:

-   NOTIFY\_USER (async): A notification for account confirmation.
-   ACCOUNT\_CONFIRMATION\_REQUESTED (async): An account confirmation was requested. This event is always sent regardless of settings.

```graphql
sendConfirmationEmail(
  channel: String!
  redirectUrl: String!
): SendConfirmationEmail
```

Details

```graphql
type SendConfirmationEmail {
  errors: [SendConfirmationEmailError!]!
}
```

<a id="arguments"></a>

### Arguments

<a id="channel"></a>

#### [`channel`](#channel) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

Slug of a channel which will be used for notify user.

<a id="redirect-url"></a>

#### [`redirectUrl`](#redirect-url) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

Base of frontend URL that will be needed to create confirmation URL.

<a id="type"></a>

### Type

<a id="sendconfirmationemail"></a>

#### [`SendConfirmationEmail`](/api-reference/users/objects/send-confirmation-email.md)

Sends a notification confirmation.

Requires the AUTHENTICATED\_USER permission.

Triggers the following webhook events:

-   NOTIFY\_USER (async): A notification for account confirmation.
-   ACCOUNT\_CONFIRMATION\_REQUESTED (async): An account confirmation was requested. This event is always sent regardless of settings.
