# emailRetry

Retry sending an email

**Scope required:** standard:write

```graphql
mutation emailRetry ($uuid: String!) {
  emailRetry (uuid: $uuid) {
      email {
        accountId
        body
        bodyRendered
        contactId
        contentType
        createdAt
        formattedCreatedAt
        formattedUpdatedAt
        id
        recipient
        statusMessage
        statusSubtype
        subject
        updatedAt
        uuid
      }
      errors
  }
}
```

## Arguments

```json
{
  "uuid": ""
}
```

| Name | Type   | Description |
| ---- | ------ | ----------- |
| uuid | String |             |

## Response

| Name   | Type                                                                | Description |
| ------ | ------------------------------------------------------------------- | ----------- |
| email  | [Email](https://docs.bunny.com/developer/api-reference/types/email) |             |
| errors | List (String)                                                       |             |
