# Send Email to Customers

## Send Email to Customers

<mark style="color:blue;">`GET`</mark> `https://api.oneroute.io/channel/:id/email`

#### Path Parameters

| Name                                 | Type   | Description |
| ------------------------------------ | ------ | ----------- |
| id<mark style="color:red;">\*</mark> | String | channel id  |

#### Headers

| Name                                     | Type   | Description |
| ---------------------------------------- | ------ | ----------- |
| apikey<mark style="color:red;">\*</mark> | String | API key     |

#### Request Body

| Name                                         | Type           | Description         |
| -------------------------------------------- | -------------- | ------------------- |
| recipients<mark style="color:red;">\*</mark> | Array\<String> | Email recipients    |
| message<mark style="color:red;">\*</mark>    | Object         | message constructor |
| message.content                              | String         | Email content(Pure  |

{% tabs %}
{% tab title="200: OK Success Response" %}

```javascript
{
    "body": [
        {
            "status": "success",
            "receipent": "test@email.com"
        }
    ],
    "message": "Email processed successfully",
    "success": true
}
```

{% endtab %}
{% endtabs %}
