Send Batch Emails
Send a batch of transactional emails to multiple recipients at once.
Endpoint
Copy full URL
Request URL
https://api.zeptomail.com/v1.1/email/batch Copied!
Request Parameters
- Request Headers
SendMailTokenAPI Key
Send Mail Token. Pass it with the prefix: Zoho-enczapikey
- Request Body
application/json
JSON Object
Show Sub-Attributes
ccJSON ArrayOptional
Array of CC recipient email addresses.
Show Sub-Attributes
email_addressJSON ObjectOptional
htmlbodystringOptional
HTML content of the email body.
client_referencestringOptional
A custom reference string to identify the email in your system.
bccJSON ArrayOptional
Array of BCC recipient email addresses.
Show Sub-Attributes
email_addressJSON ObjectOptional
attachmentsJSON ArrayOptional
Array of file attachments.
Show Sub-Attributes
file_cache_keystringOptional
mime_typestringOptional
namestringOptional
contentstringOptional
Base64-encoded file content.
reply_toJSON ArrayOptional
Reply-to email address.
subjectstringMandatory
Subject line of the email.
fromJSON ObjectMandatory
The sender's email address and optional display name.
track_opensbooleanOptional
Enable or disable open tracking.
toJSON ArrayMandatory
Array of recipient email addresses.
Show Sub-Attributes
email_addressJSON ObjectOptional
textbodystringOptional
Plain text content of the email body.
track_clicksbooleanOptional
Enable or disable click tracking.
Sample Request
Curl
Java
Python
Deluge
Copied!
curl --request POST \
--url https://api.zeptomail.com/v1.1/email/batch \
--header 'Authorization: REPLACE_KEY_VALUE' \
--header 'content-type: application/json' \
--data '{"cc":[{"email_address":{"address":"manager@zylker.com","name":"Manager"}}],"htmlbody":"<div><b>Kindly click on Verify Account to confirm your account.</b></div>","client_reference":"order-12345","bcc":[{"email_address":{"address":"archive@zylker.com","name":"Archive"}}],"attachments":[{"file_cache_key":"fc-xxxx-xxxx","mime_type":"application/pdf","name":"invoice.pdf","content":"string"}],"reply_to":[{"address":"support@zylker.com","name":"Support"}],"subject":"Account Confirmation","from":{"address":"accounts@info.zylker.com","name":"Paula"},"track_opens":true,"to":[{"email_address":{"address":"rudra.d@zylker.com","name":"Rudra"}}],"textbody":"Kindly click on Verify Account to confirm your account.","track_clicks":true}'Sample Request Body
Copied!
{
"cc": [
{
"email_address": {
"address": "manager@zylker.com",
"name": "Manager"
}
}
],
"htmlbody": "<div><b>Kindly click on Verify Account to confirm your account.</b></div>",
"client_reference": "order-12345",
"bcc": [
{
"email_address": {
"address": "archive@zylker.com",
"name": "Archive"
}
}
],
"attachments": [
{
"file_cache_key": "fc-xxxx-xxxx",
"mime_type": "application/pdf",
"name": "invoice.pdf",
"content": "string"
}
],
"reply_to": [
{
"address": "support@zylker.com",
"name": "Support"
}
],
"subject": "Account Confirmation",
"from": {
"address": "accounts@info.zylker.com",
"name": "Paula"
},
"track_opens": true,
"to": [
{
"email_address": {
"address": "rudra.d@zylker.com",
"name": "Rudra"
}
}
],
"textbody": "Kindly click on Verify Account to confirm your account.",
"track_clicks": true
}
▼ Show full
Response Parameters
- HTTP code 200
Response Body - application/json
JSON Object
- HTTP code 400
Response Body - application/json
JSON Object
Possible Response Codes
200HTTP code
Batch email sent successfully.
400HTTP code
Bad Request
Sample Response: HTTP 200
Copied!
{
"data": [
{
"code": "EM_104",
"message": "OK"
}
],
"message": "OK",
"request_id": "req-xxxx"
}
▼ Show full
Sample Response: HTTP 400
Copied!
{
"data": {
"error_code": "TM_3004",
"message": "Invalid request"
},
"message": "error"
}
▼ Show full
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.