v2.1.0Manage Blocked IPs, Dashboard Chart Fixes, Calendar Integration & more

Sending Emails

Learn how to compose, send, and manage emails using Airsend — both through the web interface and via the API.

Requirements

Before you can send emails, ensure the following are in place:

  • Verified account

    Your email address must be verified

  • Added domain

    At least one custom domain added to your workspace

  • Verified domain

    All required DNS records (MX, SPF, DKIM) must be configured and verified

  • Active subscription

    An active plan on your workspace (free tier has limited sending)

Compose & Send

You can compose and send emails through the Airsend web interface or programmatically via the API.

Using the Web Interface

  1. Click the Compose button in your inbox
  2. Select the From address (choose which domain/alias to send from)
  3. Enter the recipient's email address in the To field
  4. Add CC or BCC recipients if needed
  5. Enter a subject line
  6. Compose your email using the rich text editor or switch to HTML mode
  7. Attach files if needed (see Attachments section)
  8. Click Send

Using the API

Send emails programmatically using the POST /client/send endpoint.

POST /client/send
Headers:
  client_key: YOUR_API_KEY
  client_secret: YOUR_API_SECRET
  Content-Type: application/json

Body:
{
  "from": "[email protected]",
  "to": "[email protected]",
  "subject": "Hello from Airsend",
  "html": "<p>This is a test email sent via the Airsend API.</p>"
}

Required Fields

FieldTypeDescription
fromstringSender email address (must be a verified domain)
tostringRecipient email address
subjectstringEmail subject line
htmlstringHTML body of the email

Attachments

You can attach files to your emails through both the web interface and the API.

Attachment Limits

LimitValue
Maximum file size25 MB per attachment
Maximum total size25 MB per email (all attachments combined)
Maximum attachments10 files per email

Email Templates

Save time with reusable email templates. Create templates for common emails like welcome messages, notifications, or newsletters.

Creating a Template

  1. Go to Settings → Email Templates
  2. Click New Template
  3. Enter a template name and subject line
  4. Design your email using the visual editor or HTML
  5. Use variables like {{name}} for personalization
  6. Save the template

Available Variables

VariableDescription
{{name}}Recipient's name
{{email}}Recipient's email address
{{date}}Current date
{{unsubscribe_url}}One-click unsubscribe link