Email SDK
Adapters

ZeptoMail

Configure the Zoho ZeptoMail adapter.

ZeptoMail logo
ZeptoMail
email-sdk/zeptomail
import { createEmailClient } from "email-sdk";
import { zeptomail } from "email-sdk/zeptomail";

const email = createEmailClient({
  adapters: [zeptomail({ token: process.env.ZEPTOMAIL_TOKEN! })],
});

Options

OptionTypeRequiredNotes
tokenstringYesZeptoMail API token. The adapter adds the Zoho-enczapikey prefix if needed.
baseUrlstringNoDefaults to https://api.zeptomail.com.
fetchtypeof fetchNoUseful for tests or custom runtimes.

ZeptoMail supports recipients, reply-to, and attachments. Unsupported fields throw before the API call.

On this page