Features

Send over SMTP

Send transactional emails using our SMTP server, and make integration a breeze

What is SMTP?

SMTP, or Simple Mail Transfer Protocol, is a protocol for sending email messages between servers. It has been the backbone of email communication since 1982, and almost all developer frameworks and tools support SMTP out of the box, making it one of the easiest ways to integrate with MailPace.

Sending Emails with SMTP

Sending with SMTP is often the easiest way to integrate an existing application with MailPace. Simply change your SMTP settings to point to our servers, and you're ready to go.

Here are some examples of how to configure SMTP with MailPace:

# Add the following configuration to config/environments/production.rb:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: "smtp.mailpace.com",
port: 587,
user_name: "YOUR_MAILPACE_SERVER_API_TOKEN",
password: "YOUR_MAILPACE_SERVER_API_TOKEN",
authentication: "plain",
enable_starttls_auto: true
}
// Install Nodemailer if you haven't already:
`npm install nodemailer`;
// Use the following configuration in your Express app:
const nodemailer = require('nodemailer');
const transporter = nodemailer.createTransport({
host: 'smtp.mailpace.com',
port: 587,
secure: false,
auth: {
user: 'YOUR_MAILPACE_SERVER_API_TOKEN',
pass: 'YOUR_MAILPACE_SERVER_API_TOKEN',
},
});

Tidy Documentation

Our documentation is simple to read, easy to understand and will help you get started in minutes.

Screenshot of MailPace Documentation

We are speedy fast πŸš…

And we share our performance metrics to prove it

We measure, track and optimize for time to inbox. We publish live results for all to see to hold ourselves accountable to our fast transactional email delivery times.

Latest Time to Inbox Timings

Gmail

...s

Avg: -s

iCloud

...s

Avg: -s

Yahoo

...s

Avg: -s

Ready to send?