You can send emails from any MailSlurp inbox that you have created.

Free MailSlurp accounts cannot send emails to some common email domains such as and (paid accounts aren't affected). This is to reduce spam. To send emails to all addresses please use a paid account or contact support. For more information see the sending limits page.

Basic

The simplest email you can send only requires a recipient and an inbox.

This will send an empty email from the inboxes email address to the recipient. Most emails however are more complicated than this. Let us see the options next.

For all sending options see the SendEmailOptions reference docs. For forwarding and auto-forwarding rules see the forwarding guide.

Options

From and reply-to

Emails have a and header. Emails use the inbox email address by default for and . You can set these as options:

Setting custom headers is not recommended if you wish to maintain a good spam rating. You should instead set an inbox's property and that will be included in the headers automatically along with the inbox's email address.

Recipients

You can provide , , and recipient lists. Each must be in array format.

Example:

Recipient format

Each recipient must be a valid email address and can either be specified directly or with a name:

  • Plain format:
  • Named format:

Internationalization

If your email address uses special characters encode it first using Punycode local encoding on part before the sign.

=

Subject line

You can specify subject as follows:

Body

The body of an email is a string. If the body includes HTML set to ensure the correct header is used with the email.

You can specify character encoding with the charset option, eg: . See i18n guide for more information.

HTML encoding

You can also send HTML by setting . All emails are UTF-8 by default and [support i18n].

Here is a full example with multiline HTML and UTF8 characters.

When sending HTML you should use tables and inlined CSS for better rendering in most clients.

Attachments

You can submit a list of attachment IDs when sending emails to attach files. You must upload the files before sending using the attachment upload endpoints.

Encoding

MailSlurp expects files as base 64 encoded strings. You can do this by reading a file as bytes and then converting those to base64. Here is an example using NodeJS:

Bounce rate and reputation

When you send emails from a free account Mailslurp monitors email bounces. A bounce is when an email is rejected by an email provider. To avoid bounce warnings upgrade to a paid account and use email verification or webhooks to manage bounces.

To ensure your account always delivers emails regardless of bounce status or payment failures use queue-backed email sending or the option when sending to remove any bounced recipients from your recipient list.

Email verification

MailSlurp provides email verification services to reduce bounce rates and increase delivery.

Validate email lists

You can verify email addresses before sending via the validation methods:

Filter invalid addresses while sending

You can also verify email during sending so that all recipients are automatically validated. Configure the validation options when sending to either filter out and remove bad recipients from the recipient list or throw an error to prevent sending.

Queues and scheduling

You can delay email sending by using a job schedule. Use message queues to send with asynchronous message queues that can recover if delivery fails.

Sending emails with a queue

MailSlurp supports sending emails using SQS-backed message queues. This means that outbound emails are placed on a queue and can be retried and recovered if sending is blocked for your account or a recipient is not accepting messages. Check your plan for feature support.

Sending emails with a delay

Schedule email sending at later dates like so:

See the scheduling guide for more.

Templates

MailSlurp supports sending emails with predefined templates.

Capabilities

Templates can be created in code or designed in the dashboard. Templates support HTML, variables, and handlebars templating syntax. Unlike other services MailSlurp will warn you if you try to send a template with missing variables.

Creating templates

MailSlurp supports email templates for sending automated emails with variable replacements.

Variable syntax

If you want to use variables in your templates simple wrap each variable in double curly braces:

MailSlurp will recognize the and variables which can then be supplied as a map of in methods. They will also be displayed in the dashboard:

Passing variable values

When you send an email with a template you can pass a map of template variables and values.

MailSlurp will validate emails and return an error if passed variable names do not match template variables.

Contacts and groups

MailSlurp also supports contact and contact groups. You can create these in the dashboard.

To send an email to a contact use the property:

To send emails to each contact in a group use the property.

Next Steps

See documentation