Email API for developers
Send emails from your app with a reliable API built for developers. Beautiful templates, powerful delivery, detailed analytics, and comprehensive developer tools.
Send emails from your app with a reliable API built for developers. Beautiful templates, powerful delivery, detailed analytics, and comprehensive developer tools.
# Install Mailpost SDK npm install mailpost # Send your first email const { Mailpost } = require('mailpost'); const mailpost = new Mailpost({ apiKey: process.env.MAILPOST_API_KEY, }); const { data, error } = await mailpost.emails.send({ from: '[email protected]', to: '[email protected]', subject: 'Hello from Mailpost!', html: '<h1>Hello world!</h1>', });
Built for modern developers
Everything you need to deliver emails reliably and monitor performance.
Modern, RESTful API with comprehensive SDKs for Node.js, Python, Go, and more. Built for developer productivity.
Create stunning, responsive email templates using our visual editor or code your own with our React-based template builder.
Track delivery rates, opens, clicks, and more with our comprehensive analytics dashboard. Get insights into your email performance.
99.99% uptime with global infrastructure that scales with your needs. Trusted by thousands of businesses.
Simple, powerful API
import { Mailpost } from 'mailpost'; // Initialize with your API key const mailpost = new Mailpost({ apiKey: 'mp_123456789', }); async function sendWelcomeEmail(user) { const { data, error } = await mailpost.emails.send({ from: '[email protected]', to: user.email, subject: 'Welcome to Our Platform!', react: EmailTemplate({ firstName: user.firstName, activationLink: `https://yourbrand.com/activate?token=${user.token}` }), }); if (error) { console.error('Failed to send email:', error); return; } console.log('Email sent successfully! ID:', data.id); }
Simple, transparent pricing
Start for free and scale as you grow.
CTO, TechWave
Lead Developer, StartUp.io
Founder, DevSquad