Zoho Mail
API actions for the Zoho Mail integration.
Zoho Mail
Send and manage email in your Zoho Mail account.
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 message from Zoho Mail.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
folder_id | string | No | The ID of the folder that contains the message. |
message_id | string | No | The ID of the message to delete. |
Response
{}Get message
Get the full content of a message.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
folder_id | string | No | The ID of the folder that contains the message. |
message_id | string | No | The ID of the message to get. |
Response
{}List messages
List the messages in a folder.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
folder_id | string | No | The ID of the folder to list messages from. Leave blank for the default. |
limit | number | No | The most messages to return, from 1 to 200. |
start | number | No | The position to start listing from. Defaults to 1. |
status | string | No | Show only messages with this status: read, unread, or all. |
Response
{}Mark message as read
Mark a Zoho Mail message as read.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
message_id | string | No | The ID of the message 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 | The ID of the message to mark as unread. |
Response
{}Move message
Move a message to another Zoho Mail folder.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
message_id | string | No | The ID of the message to move. |
dest_folder_id | string | No | The ID of the folder to move the message into. |
Response
{}Search messages
Search your Zoho Mail messages.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
search_key | string | No | What to search for. Use a Zoho Mail search term, for example newMails or subject:hello. |
limit | number | No | The most messages to return, from 1 to 200. |
start | number | No | The position to start from. |
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 | The email address to send from, set up in your Zoho Mail account. |
to_address | string | No | Who to send the email to. Separate multiple addresses with commas. |
subject | string | No | Email subject line. |
content | string | No | Email body content. |
mail_format | string | No | Choose how the email is formatted: plaintext or html. Defaults to plaintext. |
cc_address | string | No | Who to copy on the email. Separate multiple addresses with commas. |
bcc_address | string | No | Who to blind copy on the email. Separate multiple addresses with commas. |
Response
{}