Documentation

Build email infrastructure, fast

Integrate, configure, and scale your email infrastructure with guides, references, and copy-paste examples built for developers.

K

Browse by category

10 guides

Popular topics

Quick integration

index.js
Node.js
const { MailpipeClient } = require('@mailpipe/sdk');
const client = new MailpipeClient({
  apiKey: process.env.MAILPIPE_KEY,
});

// Create a new routing rule
const rule = await client.rules.create({
  name: 'Support Tickets',
  condition: 'subject.includes("Help")'                      ,
  action: { type: 'webhook', url: 'https://api.myapp.com/webhooks/email' }
});
console.log('Rule active:', rule.id);

Community forum

Join other developers, share your routing scripts, and get help from the community.

Visit forum

Priority support

Need help with a complex integration? Our engineering team is here to assist.

Contact support