Get started

Send your first email in minutes

Sign up for free, verify your domain, and start sending through the API or SMTP relay.

Free to start · No credit card required

1

Create an account

Sign up with your email or Google account. No credit card required.

2

Verify a domain

Add your domain and update DNS records for DKIM, SPF, and DMARC.

3

Send your first email

Use the REST API or SMTP relay to send email from your application.

Example

Send with the API

Once you have an API key and verified domain, sending email is one POST request away.

send-email.js
import { MailBlastr } from 'mailblastr';

const mb = new MailBlastr('mb_xxxxxxxx');

await mb.emails.send({
  from: 'you@yourdomain.com',
  to: ['user@example.com'],
  subject: 'Hello World',
  html: '<strong>it works!</strong>',
});

Ready to start sending?

Create your free MailBlastr account and send your first email in minutes.