Skip to main content
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: '[email protected]',
      subject: 'Welcome to Tomlinson AI!',
      to: '[email protected]',
    },
    {
      from: '[email protected]',
      subject: 'Welcome to Tomlinson AI!',
      to: '[email protected]',
    },
  ],
});