Built and tested against Email API
0.21.1
Node.js SDK to integrate MailChannels Email API into your JavaScript or TypeScript server-side applications.
This library provides a simple way to interact with the MailChannels Email API. It is written in TypeScript and can be used in both JavaScript and TypeScript projects and in different runtimes.
- π Features
- π Prerequisites
- π¦ Installation
- π Usage
- π Naming Conventions
- π§ͺ Local simulator
- βοΈ License
- π» Development
This SDK fully supports all features and operations available in the MailChannels Email API. It is actively maintained to ensure compatibility and to quickly add support for new API features as they are released.
Some of the things you can do with the SDK:
- Send transactional emails
- Check DKIM, SPF & Domain Lockdown
- Configure DKIM keys
- Webhook notifications
- Manage sub-accounts
- Retrieve metrics
- Inspect webhook delivery batches
- Handle suppressions
- Run a local simulator for development testing
Tip
For a detailed reference mapping each SDK method to its corresponding MailChannels API endpoint reference, see the SDK-API Mapping
Add mailchannels-sdk dependency to your project
# npm
npm i mailchannels-sdk
# yarn
yarn add mailchannels-sdk
# pnpm
pnpm add mailchannels-sdkTo authenticate, you'll need an API key. You can create and manage API keys in Dashboard > Account Settings > API Keys.
Pass your API key while initializing a new MailChannels client.
import { MailChannels } from 'mailchannels-sdk'
const mailchannels = new MailChannels('your-api-key')Send an email:
const { data, error } = await mailchannels.emails.send({
from: 'Name <from@example.com>',
to: 'to@example.com',
subject: 'Test email',
html: '<p>Hello World</p>'
})Most properties in the MailChannels API use snake_case. To follow JavaScript conventions, the SDK adopts camelCase for all properties. This means:
- Most options and responses match the API docs, but field names are
camelCaserather thansnake_case. - Some fields are grouped into nested objects or renamed for simplicity and better developer experience.
- While most fields match the API docs (just with
camelCase), a few may be simplified or reorganized to feel more natural for JavaScript developers.
This package includes a local MailChannels simulator you can run via the CLI. It holds state in memory and emulates the SDK-supported endpoints, letting you develop and test your application locally without hitting the real MailChannels service.
| API | Source |
|---|---|
| Email API | src/simulator/email-api.mjs |
Important
The simulator approximates the MailChannels service for local development and testing. It is not a production implementation and may differ from the live service.
# default: http://127.0.0.1:8787
npx mailchannels-sdk simulate| Option | Description | Default |
|---|---|---|
--port <number> |
Port to listen on | 8787 |
--host <host> |
Host address | 127.0.0.1 |
--silent |
Suppress simulator logs | false |
You can override the bind address with the --host and --port options:
npx mailchannels-sdk simulate --host 127.0.0.1 --port 8787Disable logs with the --silent option:
npx mailchannels-sdk simulate --silentUse the optional baseUrl constructor option when creating the client:
import { MailChannels } from 'mailchannels-sdk'
const mailchannels = new MailChannels('local-test-key', {
baseUrl: 'http://127.0.0.1:8787'
})
const { data, error } = await mailchannels.emails.send({
from: 'sender@example.com',
to: 'recipient@example.com',
subject: 'Hello from the simulator',
html: '<p>Local test</p>'
})- Email sends and async sends
- Domain checks
- DKIM key create, list, rotate, and update
- Webhook enrollment, listing, validation, signing key lookup, and batch inspection
- Sub-account lifecycle, API keys, SMTP passwords, limits, and usage
- Engagement, performance, recipient behaviour, sender, volume, and usage metrics
- Suppression create, list, and delete
- State is in-memory only and is reset when the process stops
- Any non-empty
X-API-Keyis accepted, with separate in-memory state per API key - Webhook responses are simulated locally, but the simulator does not yet emit real webhook callbacks to your application
The next planned expansion is outbound webhook delivery so client applications can test webhook ingestion flows against the simulator as well.
Local development
# Install dependencies
pnpm install
# Build the package
pnpm build
# Run Oxlint
pnpm lint
# Run Vitest
pnpm test
pnpm test:watch
# Run typecheck
pnpm test:types
# Refresh API parity fixtures
pnpm parity:fixtures
# Run the local simulator
pnpm simulate
# Run a playground script
pnpx jiti playground/emails/send.ts
# Release new version
pnpm release