Lodol Docs

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

ParameterTypeRequiredDescription
folder_namestringNoName of the new folder.

Response

{}

Delete message

Delete a Zoho Mail message by folder ID and message ID.

Parameters

ParameterTypeRequiredDescription
folder_idstringNoZoho Mail folder ID containing the message.
message_idstringNoZoho Mail message ID to delete.

Response

{}

Get message

Fetch a message's content by folder ID and message ID.

Parameters

ParameterTypeRequiredDescription
folder_idstringNoZoho Mail folder ID containing the message.
message_idstringNoZoho Mail message ID.

Response

{}

List messages

List messages from a folder with pagination.

Parameters

ParameterTypeRequiredDescription
folder_idstringNoOptional folder ID to list messages from.
limitnumberNoOptional maximum number of messages to return (1-200).
startnumberNoOptional starting sequence number (default: 1).
statusstringNoOptional filter by status (read, unread, all).

Response

{}

Mark message as read

Mark a Zoho Mail message as read.

Parameters

ParameterTypeRequiredDescription
message_idstringNoZoho Mail message ID to mark as read.

Response

{}

Mark message as unread

Mark a Zoho Mail message as unread.

Parameters

ParameterTypeRequiredDescription
message_idstringNoZoho Mail message ID to mark as unread.

Response

{}

Move message

Move a message to another Zoho Mail folder.

Parameters

ParameterTypeRequiredDescription
message_idstringNoZoho Mail message ID to move.
dest_folder_idstringNoDestination folder ID.

Response

{}

Search messages

Search Zoho Mail messages using a search key.

Parameters

ParameterTypeRequiredDescription
search_keystringNoZoho Mail search key (e.g. 'newMails', 'subject:hello').
limitnumberNoOptional maximum number of messages to return (1-200).
startnumberNoOptional starting sequence number.

Response

{}

Send an email

Send a plain text or HTML email from a Zoho Mail account.

Parameters

ParameterTypeRequiredDescription
from_addressstringNoSender email address configured in Zoho.
to_addressstringNoRecipient email address or comma-separated list.
subjectstringNoEmail subject line.
contentstringNoEmail body content.
mail_formatstringNoFormat: 'plaintext' or 'html'. Defaults to 'plaintext'.
cc_addressstringNoOptional CC recipient list.
bcc_addressstringNoOptional BCC recipient list.

Response

{}

On this page