Zoho Mail
API actions for the Zoho Mail integration.
Zoho Mail
Manage and send email using the Zoho Mail API.
Create folder
Create a new folder in Zoho Mail.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
folder_name | string | No | Name of the new folder. |
Response
{}Delete message
Delete a Zoho Mail message by folder ID and message ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
folder_id | string | No | Zoho Mail folder ID containing the message. |
message_id | string | No | Zoho Mail message ID to delete. |
Response
{}Get message
Fetch a message's content by folder ID and message ID.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
folder_id | string | No | Zoho Mail folder ID containing the message. |
message_id | string | No | Zoho Mail message ID. |
Response
{}List messages
List messages from a folder with pagination.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
folder_id | string | No | Optional folder ID to list messages from. |
limit | number | No | Optional maximum number of messages to return (1-200). |
start | number | No | Optional starting sequence number (default: 1). |
status | string | No | Optional filter by status (read, unread, all). |
Response
{}Mark message as read
Mark a Zoho Mail message as read.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
message_id | string | No | Zoho Mail message ID to mark as read. |
Response
{}Mark message as unread
Mark a Zoho Mail message as unread.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
message_id | string | No | Zoho Mail message ID to mark as unread. |
Response
{}Move message
Move a message to another Zoho Mail folder.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
message_id | string | No | Zoho Mail message ID to move. |
dest_folder_id | string | No | Destination folder ID. |
Response
{}Search messages
Search Zoho Mail messages using a search key.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
search_key | string | No | Zoho Mail search key (e.g. 'newMails', 'subject:hello'). |
limit | number | No | Optional maximum number of messages to return (1-200). |
start | number | No | Optional starting sequence number. |
Response
{}Send an email
Send a plain text or HTML email from a Zoho Mail account.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
from_address | string | No | Sender email address configured in Zoho. |
to_address | string | No | Recipient email address or comma-separated list. |
subject | string | No | Email subject line. |
content | string | No | Email body content. |
mail_format | string | No | Format: 'plaintext' or 'html'. Defaults to 'plaintext'. |
cc_address | string | No | Optional CC recipient list. |
bcc_address | string | No | Optional BCC recipient list. |
Response
{}