Before continuing, make sure you’ve completed the SDK setup and requirements.

Overview

This guide walks you through how to send multiple individual, personalized emails in a single API request. Each email is processed separately and can have unique content, recipients, and metadata.

Send bulk emails

const response = await nuntly.emails.bulk.send({
  emails: [
    {
      from: 'ray@info.tomlinson.ai',
      subject: 'Welcome to Tomlinson AI!',
      to: 'carlo43@gmail.com',
    },
    {
      from: 'ray@info.tomlinson.ai',
      subject: 'Welcome to Tomlinson AI!',
      to: 'pink42@yahoo.com',
    },
  ],
});