Mailpipe Documentation

Learn how to integrate, configure, and scale your email infrastructure with our comprehensive guides and API reference.

Popular Topics

Quick Integration

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

// Example: Create a new routing rule
async function setupRouting() {
  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);
}
setupRouting();

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