Zoho Mail

Interact with Zoho Mail API

Actions5

Overview

The Zoho Mail node allows users to interact with the Zoho Mail API, specifically for sending messages. This node is beneficial in scenarios where automated email communication is required, such as sending notifications, alerts, or updates directly from workflows. For example, a user could set up an automation that sends a welcome email to new subscribers or alerts to team members when certain events occur.

Properties

Name Meaning
Account ID The unique identifier for the Zoho account from which the message will be sent.
From Address The email address from which the message will be sent.
To Address The recipient's email address.
Subject The subject line of the email message.
Content The body content of the email message.
Mail Format The format of the email, either HTML or plain text.
Ask Read Receipt A boolean option to request a read receipt for the sent email.

Output

The output of the execute() method is structured as a JSON object containing the response from the Zoho Mail API after attempting to send a message. If the operation is successful, it may include details about the sent message, such as its ID and status. If there is no response, an empty object is returned.

Dependencies

  • An API key credential is required for authentication with the Zoho Mail API.
  • Users must ensure they have the necessary permissions to send emails through their Zoho account.

Troubleshooting

  • Common Issues:

    • Missing required fields (e.g., From Address, To Address, Subject) can lead to errors when trying to send a message.
    • Invalid email addresses may cause the API to reject the request.
  • Error Messages:

    • "Binary property is missing" indicates that the specified binary data for attachments was not found.
    • Authentication errors may arise if the API key credential is incorrect or expired. Ensure that the correct credentials are configured.

Links and References

Discussion