Labsco
openai logo

twilio-email-send

✓ Official4,081

by openai · part of openai/plugins

Use when the caller has Twilio credentials (Account SID + Auth Token or API Key SID + Secret) and needs to send email via comms.twilio.com/v1/Emails. This is Twilio-native email — NOT SendGrid. Do NOT use if the caller has a SendGrid API key (SG.-prefix) — use twilio-sendgrid-email-send instead. Covers single sends, batch sends up to 10,000 recipients, Liquid personalization, operation tracking, and error handling.

🧩 One of 7 skills in the openai/plugins package — works on its own, and pairs well with its siblings.

This is the playbook your agent receives when the skill activates — you don't need to read it to use the skill, but it's here to audit before installing.

Overview

Agent safety: Always confirm recipients, subject, and content with the user before sending. Email is irreversible once delivered. Never send email autonomously without explicit user approval — especially for batch sends to multiple recipients.

Twilio Email is a separate product from SendGrid. Both send email, but they use different APIs, credentials, templating languages, and endpoints. If you have a SendGrid API key (SG.-prefix), use twilio-sendgrid-email-send instead.

Twilio Email (this skill)SendGrid
Base URLhttps://comms.twilio.com/v1/emailshttps://api.sendgrid.com/v3/mail/send
AuthTwilio Account SID + Auth Token (or API Key SID + Secret)SendGrid API key (SG.-prefix)
TemplatingLiquid ({{variable}})Handlebars ({{variable}})
Max recipients/request10,0001,000
Max message size10MB (including attachments)30MB
Status trackingOperation resource (poll operationLocation)Event Webhooks (async POST)
Consoleconsole.twilio.comapp.sendgrid.com

Authentication

The API uses Basic Authentication with either:

  • Account SID + Auth Token
  • API Key SID + API Key Secret

These are standard Twilio credentials — the same ones used for SMS, Voice, and other Twilio APIs.


Send a Simple Email

POST https://comms.twilio.com/v1/Emails

The endpoint is asynchronous — it returns 202 Accepted with an operationId, not a delivery confirmation.

curl -X POST "https://comms.twilio.com/v1/Emails" \
  --header "Content-Type: application/json" \
  --data '{
    "from": {
      "address": "support@example.com",
      "name": "Support Team"
    },
    "to": [
      {
        "address": "john.doe@example.com",
        "name": "John Doe"
      }
    ],
    "content": {
      "subject": "Your subject line",
      "html": "<p>Your message content in HTML format.</p>",
      "text": "Your message content in plain text."
    }
  }' \
  -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

Response (202 Accepted):

{
  "operationId": "...",
  "operationLocation": "https://comms.twilio.com/v1/Emails/Operations/..."
}

Poll operationLocation to track delivery status.


Batch Sending

Send the same message to multiple recipients in a single request by adding entries to the to array. Maximum 10,000 recipients per request.

{
  "from": {
    "address": "support@example.com",
    "name": "Support Team"
  },
  "to": [
    {
      "address": "john.doe@example.com",
      "name": "John Doe"
    },
    {
      "address": "jane.smith@example.com",
      "name": "Jane Smith"
    }
  ],
  "content": {
    "subject": "Your subject line",
    "html": "<p>Your message content in HTML format.</p>",
    "text": "Your message content in plain text."
  }
}

Liquid Personalization

Use Liquid templating in the content.subject, content.html, and content.text fields. For each variable referenced (e.g. {{firstName}}), provide a matching key in the variables object for every recipient in the to array.

{
  "from": {
    "address": "noreply@example.com",
    "name": "Support Team"
  },
  "to": [
    {
      "address": "alice@example.com",
      "name": "Alice",
      "variables": {"firstName": "Alice", "orderId": "123"}
    },
    {
      "address": "bob@example.com",
      "name": "Bob",
      "variables": {"firstName": "Bob", "orderId": "456"}
    }
  ],
  "content": {
    "subject": "Hi {{firstName}}, your order update",
    "html": "<p>Hi {{firstName}}, order #{{orderId}} has shipped.</p>",
    "text": "Hi {{firstName}}, order #{{orderId}} has shipped."
  }
}

Ensure every recipient has all referenced variables defined.


Operation Tracking

After submitting a send, use the Operation resource to monitor batch status.

  1. Submit email via POST /v1/emails — response includes operationId and operationLocation
  2. Poll status via GET to the operationLocation URI
  3. The operation tracks progress for the entire batch

This is especially important for large recipient lists where processing is not instantaneous.


Error Codes

Status CodeDescriptionAction
202AcceptedRequest accepted, Operation created. Poll operationLocation for status.
400Bad RequestMalformed or ambiguous request content. Check JSON payload.
401UnauthorizedVerify Account SID and Auth Token / API Key are correct.
429Too Many RequestsRate limited. Back off and retry.
500Internal Server ErrorTwilio server-side issue. Retry with backoff.
503Service UnavailableTemporarily unavailable. Retry after a short delay.

Validation errors return as many issues as possible in a single response to help debug quickly.


CANNOT

  • Cannot use SendGrid API keys — Twilio Email uses Twilio Account SID + Auth Token or API Key SID + Secret. SG.-prefix keys do not work. Use twilio-sendgrid-email-send for SendGrid.
  • Cannot send more than 10,000 recipients per request — Split into multiple requests for larger lists.
  • Cannot exceed 10MB per message — Total size including attachments must be under 10MB (smaller than SendGrid's 30MB limit).
  • Cannot use Unicode in the from field — Unicode encoding is not supported for sender addresses.
  • Cannot use Handlebars templating — Twilio Email uses Liquid, not Handlebars. If you see {{#if}} or {{#each}}, that's Handlebars/SendGrid syntax.
  • Cannot get synchronous delivery confirmation — The API is async. 202 Accepted means queued, not delivered. Poll the Operation resource for status.
  • Tags total length cannot exceed 10,000 bytes — Combined length of all tags on a request is limited.

Next Steps

  • Account setup and credentials: twilio-account-setup
  • SendGrid email (separate product): twilio-sendgrid-email-send
  • SMS sending: twilio-sms-send-message