View as Markdown
Zoho Mail icon

Zoho Mail ACTION

Send Email

Send an email. See the docs here
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Zoho Mail account once, then configure and run Send Email from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "zoho_mail-send-email",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zoho_mail: { authProvisionId: "apn_xxxxxxx" },
    account: "Account ID",
    fromAddress: "From Address",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Send Email inputs
Property Type Description
account Account ID string
The unique Zoho Account number associated with the particular account
Required Dynamic
fromAddress From Address string
Sender's email address for the From field
Required Dynamic
toAddress To Address string
Recipient email address for the To field
Required
ccAddress Cc Address string
Recipient email address for the Cc field
Optional
bccAddress Bcc Address string
Recipient email address for the Bcc field
Optional
subject Subject string
Subject of the email that should be sent
Optional
content Content string
Content of the email that should be sent
Optional
mailFormat Mail Format string
Whether the email should be sent in HTML format or in plain text. The default value is html.
Optional
askReceipt Ask Receipt string
Whether you need to request Read receipt from the recipient. If required, enter the value as yes.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
zoho_mail-send-email
Version
0.0.3
App
Zoho Mail
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes