[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-email-send":3,"mdc-qm7r69-key":36,"related-repo-openai-twilio-email-send":2476,"related-org-openai-twilio-email-send":2599},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"twilio-email-send","send emails via Twilio API","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\u002Fv1\u002FEmails. 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.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"API Development","api-development","tag",{"name":17,"slug":18,"type":15},"Email","email",{"name":20,"slug":21,"type":15},"Communications","communications",{"name":23,"slug":24,"type":15},"Twilio","twilio",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Ftwilio-developer-kit\u002Fskills\u002Ftwilio-email-send","---\nname: twilio-email-send\ndescription: >\n  Use when the caller has Twilio credentials (Account SID + Auth Token or\n  API Key SID + Secret) and needs to send email via comms.twilio.com\u002Fv1\u002FEmails.\n  This is Twilio-native email — NOT SendGrid. Do NOT use if the caller has a\n  SendGrid API key (SG.-prefix) — use twilio-sendgrid-email-send instead.\n  Covers single sends, batch sends up to 10,000 recipients, Liquid\n  personalization, operation tracking, and error handling.\n---\n\n## Overview\n\n> **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.\n\n**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.\n\n| | Twilio Email (this skill) | SendGrid |\n|---|---|---|\n| **Base URL** | `https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002Femails` | `https:\u002F\u002Fapi.sendgrid.com\u002Fv3\u002Fmail\u002Fsend` |\n| **Auth** | Twilio Account SID + Auth Token (or API Key SID + Secret) | SendGrid API key (`SG.`-prefix) |\n| **Templating** | Liquid (`{{variable}}`) | Handlebars (`{{variable}}`) |\n| **Max recipients\u002Frequest** | 10,000 | 1,000 |\n| **Max message size** | 10MB (including attachments) | 30MB |\n| **Status tracking** | Operation resource (poll `operationLocation`) | Event Webhooks (async POST) |\n| **Console** | console.twilio.com | app.sendgrid.com |\n\n---\n\n## Prerequisites\n\n- A Twilio account — see `twilio-account-setup` for signup and credentials\n- A **Verified Sender**: an approved domain identity configured in the Twilio console that must match the `from` address domain\n- Compliance with regional anti-spam regulations (CAN-SPAM, GDPR)\n\nFor a complete setup guide, see the Email Onboarding guide in the Twilio console.\n\n---\n\n## Authentication\n\nThe API uses **Basic Authentication** with either:\n- Account SID + Auth Token\n- API Key SID + API Key Secret\n\nThese are standard Twilio credentials — the same ones used for SMS, Voice, and other Twilio APIs.\n\n---\n\n## Send a Simple Email\n\n`POST https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails`\n\nThe endpoint is **asynchronous** — it returns `202 Accepted` with an `operationId`, not a delivery confirmation.\n\n```bash\ncurl -X POST \"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails\" \\\n  --header \"Content-Type: application\u002Fjson\" \\\n  --data '{\n    \"from\": {\n      \"address\": \"support@example.com\",\n      \"name\": \"Support Team\"\n    },\n    \"to\": [\n      {\n        \"address\": \"john.doe@example.com\",\n        \"name\": \"John Doe\"\n      }\n    ],\n    \"content\": {\n      \"subject\": \"Your subject line\",\n      \"html\": \"\u003Cp>Your message content in HTML format.\u003C\u002Fp>\",\n      \"text\": \"Your message content in plain text.\"\n    }\n  }' \\\n  -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN\n```\n\nResponse (`202 Accepted`):\n```json\n{\n  \"operationId\": \"...\",\n  \"operationLocation\": \"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails\u002FOperations\u002F...\"\n}\n```\n\nPoll `operationLocation` to track delivery status.\n\n---\n\n## Batch Sending\n\nSend the same message to multiple recipients in a single request by adding entries to the `to` array. Maximum **10,000 recipients** per request.\n\n```json\n{\n  \"from\": {\n    \"address\": \"support@example.com\",\n    \"name\": \"Support Team\"\n  },\n  \"to\": [\n    {\n      \"address\": \"john.doe@example.com\",\n      \"name\": \"John Doe\"\n    },\n    {\n      \"address\": \"jane.smith@example.com\",\n      \"name\": \"Jane Smith\"\n    }\n  ],\n  \"content\": {\n    \"subject\": \"Your subject line\",\n    \"html\": \"\u003Cp>Your message content in HTML format.\u003C\u002Fp>\",\n    \"text\": \"Your message content in plain text.\"\n  }\n}\n```\n\n---\n\n## Liquid Personalization\n\nUse 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.\n\n```json\n{\n  \"from\": {\n    \"address\": \"noreply@example.com\",\n    \"name\": \"Support Team\"\n  },\n  \"to\": [\n    {\n      \"address\": \"alice@example.com\",\n      \"name\": \"Alice\",\n      \"variables\": {\"firstName\": \"Alice\", \"orderId\": \"123\"}\n    },\n    {\n      \"address\": \"bob@example.com\",\n      \"name\": \"Bob\",\n      \"variables\": {\"firstName\": \"Bob\", \"orderId\": \"456\"}\n    }\n  ],\n  \"content\": {\n    \"subject\": \"Hi {{firstName}}, your order update\",\n    \"html\": \"\u003Cp>Hi {{firstName}}, order #{{orderId}} has shipped.\u003C\u002Fp>\",\n    \"text\": \"Hi {{firstName}}, order #{{orderId}} has shipped.\"\n  }\n}\n```\n\nEnsure every recipient has all referenced variables defined.\n\n---\n\n## Operation Tracking\n\nAfter submitting a send, use the Operation resource to monitor batch status.\n\n1. Submit email via `POST \u002Fv1\u002Femails` — response includes `operationId` and `operationLocation`\n2. Poll status via `GET` to the `operationLocation` URI\n3. The operation tracks progress for the entire batch\n\nThis is especially important for large recipient lists where processing is not instantaneous.\n\n---\n\n## Error Codes\n\n| Status Code | Description | Action |\n|-------------|-------------|--------|\n| **202** | Accepted | Request accepted, Operation created. Poll `operationLocation` for status. |\n| **400** | Bad Request | Malformed or ambiguous request content. Check JSON payload. |\n| **401** | Unauthorized | Verify Account SID and Auth Token \u002F API Key are correct. |\n| **429** | Too Many Requests | Rate limited. Back off and retry. |\n| **500** | Internal Server Error | Twilio server-side issue. Retry with backoff. |\n| **503** | Service Unavailable | Temporarily unavailable. Retry after a short delay. |\n\nValidation errors return as many issues as possible in a single response to help debug quickly.\n\n---\n\n## CANNOT\n\n- **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.\n- **Cannot send more than 10,000 recipients per request** — Split into multiple requests for larger lists.\n- **Cannot exceed 10MB per message** — Total size including attachments must be under 10MB (smaller than SendGrid's 30MB limit).\n- **Cannot use Unicode in the `from` field** — Unicode encoding is not supported for sender addresses.\n- **Cannot use Handlebars templating** — Twilio Email uses Liquid, not Handlebars. If you see `{{#if}}` or `{{#each}}`, that's Handlebars\u002FSendGrid syntax.\n- **Cannot get synchronous delivery confirmation** — The API is async. `202 Accepted` means queued, not delivered. Poll the Operation resource for status.\n- **Tags total length cannot exceed 10,000 bytes** — Combined length of all tags on a request is limited.\n\n---\n\n## Next Steps\n\n- **Account setup and credentials:** `twilio-account-setup`\n- **SendGrid email (separate product):** `twilio-sendgrid-email-send`\n- **SMS sending:** `twilio-sms-send-message`\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,66,93,307,311,317,360,365,368,374,386,399,404,407,413,422,450,728,740,836,848,851,857,877,1338,1341,1347,1399,2036,2041,2044,2050,2055,2109,2114,2117,2123,2283,2288,2291,2297,2414,2417,2423,2470],{"type":42,"tag":43,"props":44,"children":46},"element","h2",{"id":45},"overview",[47],{"type":48,"value":49},"text","Overview",{"type":42,"tag":51,"props":52,"children":53},"blockquote",{},[54],{"type":42,"tag":55,"props":56,"children":57},"p",{},[58,64],{"type":42,"tag":59,"props":60,"children":61},"strong",{},[62],{"type":48,"value":63},"Agent safety:",{"type":48,"value":65}," 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.",{"type":42,"tag":55,"props":67,"children":68},{},[69,74,76,83,85,91],{"type":42,"tag":59,"props":70,"children":71},{},[72],{"type":48,"value":73},"Twilio Email is a separate product from SendGrid.",{"type":48,"value":75}," Both send email, but they use different APIs, credentials, templating languages, and endpoints. If you have a SendGrid API key (",{"type":42,"tag":77,"props":78,"children":80},"code",{"className":79},[],[81],{"type":48,"value":82},"SG.",{"type":48,"value":84},"-prefix), use ",{"type":42,"tag":77,"props":86,"children":88},{"className":87},[],[89],{"type":48,"value":90},"twilio-sendgrid-email-send",{"type":48,"value":92}," instead.",{"type":42,"tag":94,"props":95,"children":96},"table",{},[97,119],{"type":42,"tag":98,"props":99,"children":100},"thead",{},[101],{"type":42,"tag":102,"props":103,"children":104},"tr",{},[105,109,114],{"type":42,"tag":106,"props":107,"children":108},"th",{},[],{"type":42,"tag":106,"props":110,"children":111},{},[112],{"type":48,"value":113},"Twilio Email (this skill)",{"type":42,"tag":106,"props":115,"children":116},{},[117],{"type":48,"value":118},"SendGrid",{"type":42,"tag":120,"props":121,"children":122},"tbody",{},[123,153,181,216,237,258,286],{"type":42,"tag":102,"props":124,"children":125},{},[126,135,144],{"type":42,"tag":127,"props":128,"children":129},"td",{},[130],{"type":42,"tag":59,"props":131,"children":132},{},[133],{"type":48,"value":134},"Base URL",{"type":42,"tag":127,"props":136,"children":137},{},[138],{"type":42,"tag":77,"props":139,"children":141},{"className":140},[],[142],{"type":48,"value":143},"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002Femails",{"type":42,"tag":127,"props":145,"children":146},{},[147],{"type":42,"tag":77,"props":148,"children":150},{"className":149},[],[151],{"type":48,"value":152},"https:\u002F\u002Fapi.sendgrid.com\u002Fv3\u002Fmail\u002Fsend",{"type":42,"tag":102,"props":154,"children":155},{},[156,164,169],{"type":42,"tag":127,"props":157,"children":158},{},[159],{"type":42,"tag":59,"props":160,"children":161},{},[162],{"type":48,"value":163},"Auth",{"type":42,"tag":127,"props":165,"children":166},{},[167],{"type":48,"value":168},"Twilio Account SID + Auth Token (or API Key SID + Secret)",{"type":42,"tag":127,"props":170,"children":171},{},[172,174,179],{"type":48,"value":173},"SendGrid API key (",{"type":42,"tag":77,"props":175,"children":177},{"className":176},[],[178],{"type":48,"value":82},{"type":48,"value":180},"-prefix)",{"type":42,"tag":102,"props":182,"children":183},{},[184,192,205],{"type":42,"tag":127,"props":185,"children":186},{},[187],{"type":42,"tag":59,"props":188,"children":189},{},[190],{"type":48,"value":191},"Templating",{"type":42,"tag":127,"props":193,"children":194},{},[195,197,203],{"type":48,"value":196},"Liquid (",{"type":42,"tag":77,"props":198,"children":200},{"className":199},[],[201],{"type":48,"value":202},"{{variable}}",{"type":48,"value":204},")",{"type":42,"tag":127,"props":206,"children":207},{},[208,210,215],{"type":48,"value":209},"Handlebars (",{"type":42,"tag":77,"props":211,"children":213},{"className":212},[],[214],{"type":48,"value":202},{"type":48,"value":204},{"type":42,"tag":102,"props":217,"children":218},{},[219,227,232],{"type":42,"tag":127,"props":220,"children":221},{},[222],{"type":42,"tag":59,"props":223,"children":224},{},[225],{"type":48,"value":226},"Max recipients\u002Frequest",{"type":42,"tag":127,"props":228,"children":229},{},[230],{"type":48,"value":231},"10,000",{"type":42,"tag":127,"props":233,"children":234},{},[235],{"type":48,"value":236},"1,000",{"type":42,"tag":102,"props":238,"children":239},{},[240,248,253],{"type":42,"tag":127,"props":241,"children":242},{},[243],{"type":42,"tag":59,"props":244,"children":245},{},[246],{"type":48,"value":247},"Max message size",{"type":42,"tag":127,"props":249,"children":250},{},[251],{"type":48,"value":252},"10MB (including attachments)",{"type":42,"tag":127,"props":254,"children":255},{},[256],{"type":48,"value":257},"30MB",{"type":42,"tag":102,"props":259,"children":260},{},[261,269,281],{"type":42,"tag":127,"props":262,"children":263},{},[264],{"type":42,"tag":59,"props":265,"children":266},{},[267],{"type":48,"value":268},"Status tracking",{"type":42,"tag":127,"props":270,"children":271},{},[272,274,280],{"type":48,"value":273},"Operation resource (poll ",{"type":42,"tag":77,"props":275,"children":277},{"className":276},[],[278],{"type":48,"value":279},"operationLocation",{"type":48,"value":204},{"type":42,"tag":127,"props":282,"children":283},{},[284],{"type":48,"value":285},"Event Webhooks (async POST)",{"type":42,"tag":102,"props":287,"children":288},{},[289,297,302],{"type":42,"tag":127,"props":290,"children":291},{},[292],{"type":42,"tag":59,"props":293,"children":294},{},[295],{"type":48,"value":296},"Console",{"type":42,"tag":127,"props":298,"children":299},{},[300],{"type":48,"value":301},"console.twilio.com",{"type":42,"tag":127,"props":303,"children":304},{},[305],{"type":48,"value":306},"app.sendgrid.com",{"type":42,"tag":308,"props":309,"children":310},"hr",{},[],{"type":42,"tag":43,"props":312,"children":314},{"id":313},"prerequisites",[315],{"type":48,"value":316},"Prerequisites",{"type":42,"tag":318,"props":319,"children":320},"ul",{},[321,335,355],{"type":42,"tag":322,"props":323,"children":324},"li",{},[325,327,333],{"type":48,"value":326},"A Twilio account — see ",{"type":42,"tag":77,"props":328,"children":330},{"className":329},[],[331],{"type":48,"value":332},"twilio-account-setup",{"type":48,"value":334}," for signup and credentials",{"type":42,"tag":322,"props":336,"children":337},{},[338,340,345,347,353],{"type":48,"value":339},"A ",{"type":42,"tag":59,"props":341,"children":342},{},[343],{"type":48,"value":344},"Verified Sender",{"type":48,"value":346},": an approved domain identity configured in the Twilio console that must match the ",{"type":42,"tag":77,"props":348,"children":350},{"className":349},[],[351],{"type":48,"value":352},"from",{"type":48,"value":354}," address domain",{"type":42,"tag":322,"props":356,"children":357},{},[358],{"type":48,"value":359},"Compliance with regional anti-spam regulations (CAN-SPAM, GDPR)",{"type":42,"tag":55,"props":361,"children":362},{},[363],{"type":48,"value":364},"For a complete setup guide, see the Email Onboarding guide in the Twilio console.",{"type":42,"tag":308,"props":366,"children":367},{},[],{"type":42,"tag":43,"props":369,"children":371},{"id":370},"authentication",[372],{"type":48,"value":373},"Authentication",{"type":42,"tag":55,"props":375,"children":376},{},[377,379,384],{"type":48,"value":378},"The API uses ",{"type":42,"tag":59,"props":380,"children":381},{},[382],{"type":48,"value":383},"Basic Authentication",{"type":48,"value":385}," with either:",{"type":42,"tag":318,"props":387,"children":388},{},[389,394],{"type":42,"tag":322,"props":390,"children":391},{},[392],{"type":48,"value":393},"Account SID + Auth Token",{"type":42,"tag":322,"props":395,"children":396},{},[397],{"type":48,"value":398},"API Key SID + API Key Secret",{"type":42,"tag":55,"props":400,"children":401},{},[402],{"type":48,"value":403},"These are standard Twilio credentials — the same ones used for SMS, Voice, and other Twilio APIs.",{"type":42,"tag":308,"props":405,"children":406},{},[],{"type":42,"tag":43,"props":408,"children":410},{"id":409},"send-a-simple-email",[411],{"type":48,"value":412},"Send a Simple Email",{"type":42,"tag":55,"props":414,"children":415},{},[416],{"type":42,"tag":77,"props":417,"children":419},{"className":418},[],[420],{"type":48,"value":421},"POST https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails",{"type":42,"tag":55,"props":423,"children":424},{},[425,427,432,434,440,442,448],{"type":48,"value":426},"The endpoint is ",{"type":42,"tag":59,"props":428,"children":429},{},[430],{"type":48,"value":431},"asynchronous",{"type":48,"value":433}," — it returns ",{"type":42,"tag":77,"props":435,"children":437},{"className":436},[],[438],{"type":48,"value":439},"202 Accepted",{"type":48,"value":441}," with an ",{"type":42,"tag":77,"props":443,"children":445},{"className":444},[],[446],{"type":48,"value":447},"operationId",{"type":48,"value":449},", not a delivery confirmation.",{"type":42,"tag":451,"props":452,"children":457},"pre",{"className":453,"code":454,"language":455,"meta":456,"style":456},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -X POST \"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails\" \\\n  --header \"Content-Type: application\u002Fjson\" \\\n  --data '{\n    \"from\": {\n      \"address\": \"support@example.com\",\n      \"name\": \"Support Team\"\n    },\n    \"to\": [\n      {\n        \"address\": \"john.doe@example.com\",\n        \"name\": \"John Doe\"\n      }\n    ],\n    \"content\": {\n      \"subject\": \"Your subject line\",\n      \"html\": \"\u003Cp>Your message content in HTML format.\u003C\u002Fp>\",\n      \"text\": \"Your message content in plain text.\"\n    }\n  }' \\\n  -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN\n","bash","",[458],{"type":42,"tag":77,"props":459,"children":460},{"__ignoreMap":456},[461,506,532,551,560,569,578,587,596,605,614,623,632,641,650,659,668,677,686,704],{"type":42,"tag":462,"props":463,"children":466},"span",{"class":464,"line":465},"line",1,[467,473,479,484,490,495,500],{"type":42,"tag":462,"props":468,"children":470},{"style":469},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[471],{"type":48,"value":472},"curl",{"type":42,"tag":462,"props":474,"children":476},{"style":475},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[477],{"type":48,"value":478}," -X",{"type":42,"tag":462,"props":480,"children":481},{"style":475},[482],{"type":48,"value":483}," POST",{"type":42,"tag":462,"props":485,"children":487},{"style":486},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[488],{"type":48,"value":489}," \"",{"type":42,"tag":462,"props":491,"children":492},{"style":475},[493],{"type":48,"value":494},"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails",{"type":42,"tag":462,"props":496,"children":497},{"style":486},[498],{"type":48,"value":499},"\"",{"type":42,"tag":462,"props":501,"children":503},{"style":502},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[504],{"type":48,"value":505}," \\\n",{"type":42,"tag":462,"props":507,"children":509},{"class":464,"line":508},2,[510,515,519,524,528],{"type":42,"tag":462,"props":511,"children":512},{"style":475},[513],{"type":48,"value":514},"  --header",{"type":42,"tag":462,"props":516,"children":517},{"style":486},[518],{"type":48,"value":489},{"type":42,"tag":462,"props":520,"children":521},{"style":475},[522],{"type":48,"value":523},"Content-Type: application\u002Fjson",{"type":42,"tag":462,"props":525,"children":526},{"style":486},[527],{"type":48,"value":499},{"type":42,"tag":462,"props":529,"children":530},{"style":502},[531],{"type":48,"value":505},{"type":42,"tag":462,"props":533,"children":535},{"class":464,"line":534},3,[536,541,546],{"type":42,"tag":462,"props":537,"children":538},{"style":475},[539],{"type":48,"value":540},"  --data",{"type":42,"tag":462,"props":542,"children":543},{"style":486},[544],{"type":48,"value":545}," '",{"type":42,"tag":462,"props":547,"children":548},{"style":475},[549],{"type":48,"value":550},"{\n",{"type":42,"tag":462,"props":552,"children":554},{"class":464,"line":553},4,[555],{"type":42,"tag":462,"props":556,"children":557},{"style":475},[558],{"type":48,"value":559},"    \"from\": {\n",{"type":42,"tag":462,"props":561,"children":563},{"class":464,"line":562},5,[564],{"type":42,"tag":462,"props":565,"children":566},{"style":475},[567],{"type":48,"value":568},"      \"address\": \"support@example.com\",\n",{"type":42,"tag":462,"props":570,"children":572},{"class":464,"line":571},6,[573],{"type":42,"tag":462,"props":574,"children":575},{"style":475},[576],{"type":48,"value":577},"      \"name\": \"Support Team\"\n",{"type":42,"tag":462,"props":579,"children":581},{"class":464,"line":580},7,[582],{"type":42,"tag":462,"props":583,"children":584},{"style":475},[585],{"type":48,"value":586},"    },\n",{"type":42,"tag":462,"props":588,"children":590},{"class":464,"line":589},8,[591],{"type":42,"tag":462,"props":592,"children":593},{"style":475},[594],{"type":48,"value":595},"    \"to\": [\n",{"type":42,"tag":462,"props":597,"children":599},{"class":464,"line":598},9,[600],{"type":42,"tag":462,"props":601,"children":602},{"style":475},[603],{"type":48,"value":604},"      {\n",{"type":42,"tag":462,"props":606,"children":608},{"class":464,"line":607},10,[609],{"type":42,"tag":462,"props":610,"children":611},{"style":475},[612],{"type":48,"value":613},"        \"address\": \"john.doe@example.com\",\n",{"type":42,"tag":462,"props":615,"children":617},{"class":464,"line":616},11,[618],{"type":42,"tag":462,"props":619,"children":620},{"style":475},[621],{"type":48,"value":622},"        \"name\": \"John Doe\"\n",{"type":42,"tag":462,"props":624,"children":626},{"class":464,"line":625},12,[627],{"type":42,"tag":462,"props":628,"children":629},{"style":475},[630],{"type":48,"value":631},"      }\n",{"type":42,"tag":462,"props":633,"children":635},{"class":464,"line":634},13,[636],{"type":42,"tag":462,"props":637,"children":638},{"style":475},[639],{"type":48,"value":640},"    ],\n",{"type":42,"tag":462,"props":642,"children":644},{"class":464,"line":643},14,[645],{"type":42,"tag":462,"props":646,"children":647},{"style":475},[648],{"type":48,"value":649},"    \"content\": {\n",{"type":42,"tag":462,"props":651,"children":653},{"class":464,"line":652},15,[654],{"type":42,"tag":462,"props":655,"children":656},{"style":475},[657],{"type":48,"value":658},"      \"subject\": \"Your subject line\",\n",{"type":42,"tag":462,"props":660,"children":662},{"class":464,"line":661},16,[663],{"type":42,"tag":462,"props":664,"children":665},{"style":475},[666],{"type":48,"value":667},"      \"html\": \"\u003Cp>Your message content in HTML format.\u003C\u002Fp>\",\n",{"type":42,"tag":462,"props":669,"children":671},{"class":464,"line":670},17,[672],{"type":42,"tag":462,"props":673,"children":674},{"style":475},[675],{"type":48,"value":676},"      \"text\": \"Your message content in plain text.\"\n",{"type":42,"tag":462,"props":678,"children":680},{"class":464,"line":679},18,[681],{"type":42,"tag":462,"props":682,"children":683},{"style":475},[684],{"type":48,"value":685},"    }\n",{"type":42,"tag":462,"props":687,"children":689},{"class":464,"line":688},19,[690,695,700],{"type":42,"tag":462,"props":691,"children":692},{"style":475},[693],{"type":48,"value":694},"  }",{"type":42,"tag":462,"props":696,"children":697},{"style":486},[698],{"type":48,"value":699},"'",{"type":42,"tag":462,"props":701,"children":702},{"style":502},[703],{"type":48,"value":505},{"type":42,"tag":462,"props":705,"children":707},{"class":464,"line":706},20,[708,713,718,723],{"type":42,"tag":462,"props":709,"children":710},{"style":475},[711],{"type":48,"value":712},"  -u",{"type":42,"tag":462,"props":714,"children":715},{"style":502},[716],{"type":48,"value":717}," $TWILIO_ACCOUNT_SID",{"type":42,"tag":462,"props":719,"children":720},{"style":475},[721],{"type":48,"value":722},":",{"type":42,"tag":462,"props":724,"children":725},{"style":502},[726],{"type":48,"value":727},"$TWILIO_AUTH_TOKEN\n",{"type":42,"tag":55,"props":729,"children":730},{},[731,733,738],{"type":48,"value":732},"Response (",{"type":42,"tag":77,"props":734,"children":736},{"className":735},[],[737],{"type":48,"value":439},{"type":48,"value":739},"):",{"type":42,"tag":451,"props":741,"children":745},{"className":742,"code":743,"language":744,"meta":456,"style":456},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"operationId\": \"...\",\n  \"operationLocation\": \"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails\u002FOperations\u002F...\"\n}\n","json",[746],{"type":42,"tag":77,"props":747,"children":748},{"__ignoreMap":456},[749,756,795,828],{"type":42,"tag":462,"props":750,"children":751},{"class":464,"line":465},[752],{"type":42,"tag":462,"props":753,"children":754},{"style":486},[755],{"type":48,"value":550},{"type":42,"tag":462,"props":757,"children":758},{"class":464,"line":508},[759,764,769,773,777,781,786,790],{"type":42,"tag":462,"props":760,"children":761},{"style":486},[762],{"type":48,"value":763},"  \"",{"type":42,"tag":462,"props":765,"children":767},{"style":766},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[768],{"type":48,"value":447},{"type":42,"tag":462,"props":770,"children":771},{"style":486},[772],{"type":48,"value":499},{"type":42,"tag":462,"props":774,"children":775},{"style":486},[776],{"type":48,"value":722},{"type":42,"tag":462,"props":778,"children":779},{"style":486},[780],{"type":48,"value":489},{"type":42,"tag":462,"props":782,"children":783},{"style":475},[784],{"type":48,"value":785},"...",{"type":42,"tag":462,"props":787,"children":788},{"style":486},[789],{"type":48,"value":499},{"type":42,"tag":462,"props":791,"children":792},{"style":486},[793],{"type":48,"value":794},",\n",{"type":42,"tag":462,"props":796,"children":797},{"class":464,"line":534},[798,802,806,810,814,818,823],{"type":42,"tag":462,"props":799,"children":800},{"style":486},[801],{"type":48,"value":763},{"type":42,"tag":462,"props":803,"children":804},{"style":766},[805],{"type":48,"value":279},{"type":42,"tag":462,"props":807,"children":808},{"style":486},[809],{"type":48,"value":499},{"type":42,"tag":462,"props":811,"children":812},{"style":486},[813],{"type":48,"value":722},{"type":42,"tag":462,"props":815,"children":816},{"style":486},[817],{"type":48,"value":489},{"type":42,"tag":462,"props":819,"children":820},{"style":475},[821],{"type":48,"value":822},"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails\u002FOperations\u002F...",{"type":42,"tag":462,"props":824,"children":825},{"style":486},[826],{"type":48,"value":827},"\"\n",{"type":42,"tag":462,"props":829,"children":830},{"class":464,"line":553},[831],{"type":42,"tag":462,"props":832,"children":833},{"style":486},[834],{"type":48,"value":835},"}\n",{"type":42,"tag":55,"props":837,"children":838},{},[839,841,846],{"type":48,"value":840},"Poll ",{"type":42,"tag":77,"props":842,"children":844},{"className":843},[],[845],{"type":48,"value":279},{"type":48,"value":847}," to track delivery status.",{"type":42,"tag":308,"props":849,"children":850},{},[],{"type":42,"tag":43,"props":852,"children":854},{"id":853},"batch-sending",[855],{"type":48,"value":856},"Batch Sending",{"type":42,"tag":55,"props":858,"children":859},{},[860,862,868,870,875],{"type":48,"value":861},"Send the same message to multiple recipients in a single request by adding entries to the ",{"type":42,"tag":77,"props":863,"children":865},{"className":864},[],[866],{"type":48,"value":867},"to",{"type":48,"value":869}," array. Maximum ",{"type":42,"tag":59,"props":871,"children":872},{},[873],{"type":48,"value":874},"10,000 recipients",{"type":48,"value":876}," per request.",{"type":42,"tag":451,"props":878,"children":880},{"className":742,"code":879,"language":744,"meta":456,"style":456},"{\n  \"from\": {\n    \"address\": \"support@example.com\",\n    \"name\": \"Support Team\"\n  },\n  \"to\": [\n    {\n      \"address\": \"john.doe@example.com\",\n      \"name\": \"John Doe\"\n    },\n    {\n      \"address\": \"jane.smith@example.com\",\n      \"name\": \"Jane Smith\"\n    }\n  ],\n  \"content\": {\n    \"subject\": \"Your subject line\",\n    \"html\": \"\u003Cp>Your message content in HTML format.\u003C\u002Fp>\",\n    \"text\": \"Your message content in plain text.\"\n  }\n}\n",[881],{"type":42,"tag":77,"props":882,"children":883},{"__ignoreMap":456},[884,891,915,953,986,994,1018,1026,1063,1095,1102,1109,1145,1177,1184,1192,1216,1253,1290,1322,1330],{"type":42,"tag":462,"props":885,"children":886},{"class":464,"line":465},[887],{"type":42,"tag":462,"props":888,"children":889},{"style":486},[890],{"type":48,"value":550},{"type":42,"tag":462,"props":892,"children":893},{"class":464,"line":508},[894,898,902,906,910],{"type":42,"tag":462,"props":895,"children":896},{"style":486},[897],{"type":48,"value":763},{"type":42,"tag":462,"props":899,"children":900},{"style":766},[901],{"type":48,"value":352},{"type":42,"tag":462,"props":903,"children":904},{"style":486},[905],{"type":48,"value":499},{"type":42,"tag":462,"props":907,"children":908},{"style":486},[909],{"type":48,"value":722},{"type":42,"tag":462,"props":911,"children":912},{"style":486},[913],{"type":48,"value":914}," {\n",{"type":42,"tag":462,"props":916,"children":917},{"class":464,"line":534},[918,923,928,932,936,940,945,949],{"type":42,"tag":462,"props":919,"children":920},{"style":486},[921],{"type":48,"value":922},"    \"",{"type":42,"tag":462,"props":924,"children":925},{"style":469},[926],{"type":48,"value":927},"address",{"type":42,"tag":462,"props":929,"children":930},{"style":486},[931],{"type":48,"value":499},{"type":42,"tag":462,"props":933,"children":934},{"style":486},[935],{"type":48,"value":722},{"type":42,"tag":462,"props":937,"children":938},{"style":486},[939],{"type":48,"value":489},{"type":42,"tag":462,"props":941,"children":942},{"style":475},[943],{"type":48,"value":944},"support@example.com",{"type":42,"tag":462,"props":946,"children":947},{"style":486},[948],{"type":48,"value":499},{"type":42,"tag":462,"props":950,"children":951},{"style":486},[952],{"type":48,"value":794},{"type":42,"tag":462,"props":954,"children":955},{"class":464,"line":553},[956,960,965,969,973,977,982],{"type":42,"tag":462,"props":957,"children":958},{"style":486},[959],{"type":48,"value":922},{"type":42,"tag":462,"props":961,"children":962},{"style":469},[963],{"type":48,"value":964},"name",{"type":42,"tag":462,"props":966,"children":967},{"style":486},[968],{"type":48,"value":499},{"type":42,"tag":462,"props":970,"children":971},{"style":486},[972],{"type":48,"value":722},{"type":42,"tag":462,"props":974,"children":975},{"style":486},[976],{"type":48,"value":489},{"type":42,"tag":462,"props":978,"children":979},{"style":475},[980],{"type":48,"value":981},"Support Team",{"type":42,"tag":462,"props":983,"children":984},{"style":486},[985],{"type":48,"value":827},{"type":42,"tag":462,"props":987,"children":988},{"class":464,"line":562},[989],{"type":42,"tag":462,"props":990,"children":991},{"style":486},[992],{"type":48,"value":993},"  },\n",{"type":42,"tag":462,"props":995,"children":996},{"class":464,"line":571},[997,1001,1005,1009,1013],{"type":42,"tag":462,"props":998,"children":999},{"style":486},[1000],{"type":48,"value":763},{"type":42,"tag":462,"props":1002,"children":1003},{"style":766},[1004],{"type":48,"value":867},{"type":42,"tag":462,"props":1006,"children":1007},{"style":486},[1008],{"type":48,"value":499},{"type":42,"tag":462,"props":1010,"children":1011},{"style":486},[1012],{"type":48,"value":722},{"type":42,"tag":462,"props":1014,"children":1015},{"style":486},[1016],{"type":48,"value":1017}," [\n",{"type":42,"tag":462,"props":1019,"children":1020},{"class":464,"line":580},[1021],{"type":42,"tag":462,"props":1022,"children":1023},{"style":486},[1024],{"type":48,"value":1025},"    {\n",{"type":42,"tag":462,"props":1027,"children":1028},{"class":464,"line":589},[1029,1034,1038,1042,1046,1050,1055,1059],{"type":42,"tag":462,"props":1030,"children":1031},{"style":486},[1032],{"type":48,"value":1033},"      \"",{"type":42,"tag":462,"props":1035,"children":1036},{"style":469},[1037],{"type":48,"value":927},{"type":42,"tag":462,"props":1039,"children":1040},{"style":486},[1041],{"type":48,"value":499},{"type":42,"tag":462,"props":1043,"children":1044},{"style":486},[1045],{"type":48,"value":722},{"type":42,"tag":462,"props":1047,"children":1048},{"style":486},[1049],{"type":48,"value":489},{"type":42,"tag":462,"props":1051,"children":1052},{"style":475},[1053],{"type":48,"value":1054},"john.doe@example.com",{"type":42,"tag":462,"props":1056,"children":1057},{"style":486},[1058],{"type":48,"value":499},{"type":42,"tag":462,"props":1060,"children":1061},{"style":486},[1062],{"type":48,"value":794},{"type":42,"tag":462,"props":1064,"children":1065},{"class":464,"line":598},[1066,1070,1074,1078,1082,1086,1091],{"type":42,"tag":462,"props":1067,"children":1068},{"style":486},[1069],{"type":48,"value":1033},{"type":42,"tag":462,"props":1071,"children":1072},{"style":469},[1073],{"type":48,"value":964},{"type":42,"tag":462,"props":1075,"children":1076},{"style":486},[1077],{"type":48,"value":499},{"type":42,"tag":462,"props":1079,"children":1080},{"style":486},[1081],{"type":48,"value":722},{"type":42,"tag":462,"props":1083,"children":1084},{"style":486},[1085],{"type":48,"value":489},{"type":42,"tag":462,"props":1087,"children":1088},{"style":475},[1089],{"type":48,"value":1090},"John Doe",{"type":42,"tag":462,"props":1092,"children":1093},{"style":486},[1094],{"type":48,"value":827},{"type":42,"tag":462,"props":1096,"children":1097},{"class":464,"line":607},[1098],{"type":42,"tag":462,"props":1099,"children":1100},{"style":486},[1101],{"type":48,"value":586},{"type":42,"tag":462,"props":1103,"children":1104},{"class":464,"line":616},[1105],{"type":42,"tag":462,"props":1106,"children":1107},{"style":486},[1108],{"type":48,"value":1025},{"type":42,"tag":462,"props":1110,"children":1111},{"class":464,"line":625},[1112,1116,1120,1124,1128,1132,1137,1141],{"type":42,"tag":462,"props":1113,"children":1114},{"style":486},[1115],{"type":48,"value":1033},{"type":42,"tag":462,"props":1117,"children":1118},{"style":469},[1119],{"type":48,"value":927},{"type":42,"tag":462,"props":1121,"children":1122},{"style":486},[1123],{"type":48,"value":499},{"type":42,"tag":462,"props":1125,"children":1126},{"style":486},[1127],{"type":48,"value":722},{"type":42,"tag":462,"props":1129,"children":1130},{"style":486},[1131],{"type":48,"value":489},{"type":42,"tag":462,"props":1133,"children":1134},{"style":475},[1135],{"type":48,"value":1136},"jane.smith@example.com",{"type":42,"tag":462,"props":1138,"children":1139},{"style":486},[1140],{"type":48,"value":499},{"type":42,"tag":462,"props":1142,"children":1143},{"style":486},[1144],{"type":48,"value":794},{"type":42,"tag":462,"props":1146,"children":1147},{"class":464,"line":634},[1148,1152,1156,1160,1164,1168,1173],{"type":42,"tag":462,"props":1149,"children":1150},{"style":486},[1151],{"type":48,"value":1033},{"type":42,"tag":462,"props":1153,"children":1154},{"style":469},[1155],{"type":48,"value":964},{"type":42,"tag":462,"props":1157,"children":1158},{"style":486},[1159],{"type":48,"value":499},{"type":42,"tag":462,"props":1161,"children":1162},{"style":486},[1163],{"type":48,"value":722},{"type":42,"tag":462,"props":1165,"children":1166},{"style":486},[1167],{"type":48,"value":489},{"type":42,"tag":462,"props":1169,"children":1170},{"style":475},[1171],{"type":48,"value":1172},"Jane Smith",{"type":42,"tag":462,"props":1174,"children":1175},{"style":486},[1176],{"type":48,"value":827},{"type":42,"tag":462,"props":1178,"children":1179},{"class":464,"line":643},[1180],{"type":42,"tag":462,"props":1181,"children":1182},{"style":486},[1183],{"type":48,"value":685},{"type":42,"tag":462,"props":1185,"children":1186},{"class":464,"line":652},[1187],{"type":42,"tag":462,"props":1188,"children":1189},{"style":486},[1190],{"type":48,"value":1191},"  ],\n",{"type":42,"tag":462,"props":1193,"children":1194},{"class":464,"line":661},[1195,1199,1204,1208,1212],{"type":42,"tag":462,"props":1196,"children":1197},{"style":486},[1198],{"type":48,"value":763},{"type":42,"tag":462,"props":1200,"children":1201},{"style":766},[1202],{"type":48,"value":1203},"content",{"type":42,"tag":462,"props":1205,"children":1206},{"style":486},[1207],{"type":48,"value":499},{"type":42,"tag":462,"props":1209,"children":1210},{"style":486},[1211],{"type":48,"value":722},{"type":42,"tag":462,"props":1213,"children":1214},{"style":486},[1215],{"type":48,"value":914},{"type":42,"tag":462,"props":1217,"children":1218},{"class":464,"line":670},[1219,1223,1228,1232,1236,1240,1245,1249],{"type":42,"tag":462,"props":1220,"children":1221},{"style":486},[1222],{"type":48,"value":922},{"type":42,"tag":462,"props":1224,"children":1225},{"style":469},[1226],{"type":48,"value":1227},"subject",{"type":42,"tag":462,"props":1229,"children":1230},{"style":486},[1231],{"type":48,"value":499},{"type":42,"tag":462,"props":1233,"children":1234},{"style":486},[1235],{"type":48,"value":722},{"type":42,"tag":462,"props":1237,"children":1238},{"style":486},[1239],{"type":48,"value":489},{"type":42,"tag":462,"props":1241,"children":1242},{"style":475},[1243],{"type":48,"value":1244},"Your subject line",{"type":42,"tag":462,"props":1246,"children":1247},{"style":486},[1248],{"type":48,"value":499},{"type":42,"tag":462,"props":1250,"children":1251},{"style":486},[1252],{"type":48,"value":794},{"type":42,"tag":462,"props":1254,"children":1255},{"class":464,"line":679},[1256,1260,1265,1269,1273,1277,1282,1286],{"type":42,"tag":462,"props":1257,"children":1258},{"style":486},[1259],{"type":48,"value":922},{"type":42,"tag":462,"props":1261,"children":1262},{"style":469},[1263],{"type":48,"value":1264},"html",{"type":42,"tag":462,"props":1266,"children":1267},{"style":486},[1268],{"type":48,"value":499},{"type":42,"tag":462,"props":1270,"children":1271},{"style":486},[1272],{"type":48,"value":722},{"type":42,"tag":462,"props":1274,"children":1275},{"style":486},[1276],{"type":48,"value":489},{"type":42,"tag":462,"props":1278,"children":1279},{"style":475},[1280],{"type":48,"value":1281},"\u003Cp>Your message content in HTML format.\u003C\u002Fp>",{"type":42,"tag":462,"props":1283,"children":1284},{"style":486},[1285],{"type":48,"value":499},{"type":42,"tag":462,"props":1287,"children":1288},{"style":486},[1289],{"type":48,"value":794},{"type":42,"tag":462,"props":1291,"children":1292},{"class":464,"line":688},[1293,1297,1301,1305,1309,1313,1318],{"type":42,"tag":462,"props":1294,"children":1295},{"style":486},[1296],{"type":48,"value":922},{"type":42,"tag":462,"props":1298,"children":1299},{"style":469},[1300],{"type":48,"value":48},{"type":42,"tag":462,"props":1302,"children":1303},{"style":486},[1304],{"type":48,"value":499},{"type":42,"tag":462,"props":1306,"children":1307},{"style":486},[1308],{"type":48,"value":722},{"type":42,"tag":462,"props":1310,"children":1311},{"style":486},[1312],{"type":48,"value":489},{"type":42,"tag":462,"props":1314,"children":1315},{"style":475},[1316],{"type":48,"value":1317},"Your message content in plain text.",{"type":42,"tag":462,"props":1319,"children":1320},{"style":486},[1321],{"type":48,"value":827},{"type":42,"tag":462,"props":1323,"children":1324},{"class":464,"line":706},[1325],{"type":42,"tag":462,"props":1326,"children":1327},{"style":486},[1328],{"type":48,"value":1329},"  }\n",{"type":42,"tag":462,"props":1331,"children":1333},{"class":464,"line":1332},21,[1334],{"type":42,"tag":462,"props":1335,"children":1336},{"style":486},[1337],{"type":48,"value":835},{"type":42,"tag":308,"props":1339,"children":1340},{},[],{"type":42,"tag":43,"props":1342,"children":1344},{"id":1343},"liquid-personalization",[1345],{"type":48,"value":1346},"Liquid Personalization",{"type":42,"tag":55,"props":1348,"children":1349},{},[1350,1352,1358,1360,1366,1368,1374,1376,1382,1384,1390,1392,1397],{"type":48,"value":1351},"Use Liquid templating in the ",{"type":42,"tag":77,"props":1353,"children":1355},{"className":1354},[],[1356],{"type":48,"value":1357},"content.subject",{"type":48,"value":1359},", ",{"type":42,"tag":77,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":48,"value":1365},"content.html",{"type":48,"value":1367},", and ",{"type":42,"tag":77,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":48,"value":1373},"content.text",{"type":48,"value":1375}," fields. For each variable referenced (e.g. ",{"type":42,"tag":77,"props":1377,"children":1379},{"className":1378},[],[1380],{"type":48,"value":1381},"{{firstName}}",{"type":48,"value":1383},"), provide a matching key in the ",{"type":42,"tag":77,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":48,"value":1389},"variables",{"type":48,"value":1391}," object for every recipient in the ",{"type":42,"tag":77,"props":1393,"children":1395},{"className":1394},[],[1396],{"type":48,"value":867},{"type":48,"value":1398}," array.",{"type":42,"tag":451,"props":1400,"children":1402},{"className":742,"code":1401,"language":744,"meta":456,"style":456},"{\n  \"from\": {\n    \"address\": \"noreply@example.com\",\n    \"name\": \"Support Team\"\n  },\n  \"to\": [\n    {\n      \"address\": \"alice@example.com\",\n      \"name\": \"Alice\",\n      \"variables\": {\"firstName\": \"Alice\", \"orderId\": \"123\"}\n    },\n    {\n      \"address\": \"bob@example.com\",\n      \"name\": \"Bob\",\n      \"variables\": {\"firstName\": \"Bob\", \"orderId\": \"456\"}\n    }\n  ],\n  \"content\": {\n    \"subject\": \"Hi {{firstName}}, your order update\",\n    \"html\": \"\u003Cp>Hi {{firstName}}, order #{{orderId}} has shipped.\u003C\u002Fp>\",\n    \"text\": \"Hi {{firstName}}, order #{{orderId}} has shipped.\"\n  }\n}\n",[1403],{"type":42,"tag":77,"props":1404,"children":1405},{"__ignoreMap":456},[1406,1413,1436,1472,1503,1510,1533,1540,1576,1612,1705,1712,1719,1755,1791,1879,1886,1893,1916,1952,1988,2020,2028],{"type":42,"tag":462,"props":1407,"children":1408},{"class":464,"line":465},[1409],{"type":42,"tag":462,"props":1410,"children":1411},{"style":486},[1412],{"type":48,"value":550},{"type":42,"tag":462,"props":1414,"children":1415},{"class":464,"line":508},[1416,1420,1424,1428,1432],{"type":42,"tag":462,"props":1417,"children":1418},{"style":486},[1419],{"type":48,"value":763},{"type":42,"tag":462,"props":1421,"children":1422},{"style":766},[1423],{"type":48,"value":352},{"type":42,"tag":462,"props":1425,"children":1426},{"style":486},[1427],{"type":48,"value":499},{"type":42,"tag":462,"props":1429,"children":1430},{"style":486},[1431],{"type":48,"value":722},{"type":42,"tag":462,"props":1433,"children":1434},{"style":486},[1435],{"type":48,"value":914},{"type":42,"tag":462,"props":1437,"children":1438},{"class":464,"line":534},[1439,1443,1447,1451,1455,1459,1464,1468],{"type":42,"tag":462,"props":1440,"children":1441},{"style":486},[1442],{"type":48,"value":922},{"type":42,"tag":462,"props":1444,"children":1445},{"style":469},[1446],{"type":48,"value":927},{"type":42,"tag":462,"props":1448,"children":1449},{"style":486},[1450],{"type":48,"value":499},{"type":42,"tag":462,"props":1452,"children":1453},{"style":486},[1454],{"type":48,"value":722},{"type":42,"tag":462,"props":1456,"children":1457},{"style":486},[1458],{"type":48,"value":489},{"type":42,"tag":462,"props":1460,"children":1461},{"style":475},[1462],{"type":48,"value":1463},"noreply@example.com",{"type":42,"tag":462,"props":1465,"children":1466},{"style":486},[1467],{"type":48,"value":499},{"type":42,"tag":462,"props":1469,"children":1470},{"style":486},[1471],{"type":48,"value":794},{"type":42,"tag":462,"props":1473,"children":1474},{"class":464,"line":553},[1475,1479,1483,1487,1491,1495,1499],{"type":42,"tag":462,"props":1476,"children":1477},{"style":486},[1478],{"type":48,"value":922},{"type":42,"tag":462,"props":1480,"children":1481},{"style":469},[1482],{"type":48,"value":964},{"type":42,"tag":462,"props":1484,"children":1485},{"style":486},[1486],{"type":48,"value":499},{"type":42,"tag":462,"props":1488,"children":1489},{"style":486},[1490],{"type":48,"value":722},{"type":42,"tag":462,"props":1492,"children":1493},{"style":486},[1494],{"type":48,"value":489},{"type":42,"tag":462,"props":1496,"children":1497},{"style":475},[1498],{"type":48,"value":981},{"type":42,"tag":462,"props":1500,"children":1501},{"style":486},[1502],{"type":48,"value":827},{"type":42,"tag":462,"props":1504,"children":1505},{"class":464,"line":562},[1506],{"type":42,"tag":462,"props":1507,"children":1508},{"style":486},[1509],{"type":48,"value":993},{"type":42,"tag":462,"props":1511,"children":1512},{"class":464,"line":571},[1513,1517,1521,1525,1529],{"type":42,"tag":462,"props":1514,"children":1515},{"style":486},[1516],{"type":48,"value":763},{"type":42,"tag":462,"props":1518,"children":1519},{"style":766},[1520],{"type":48,"value":867},{"type":42,"tag":462,"props":1522,"children":1523},{"style":486},[1524],{"type":48,"value":499},{"type":42,"tag":462,"props":1526,"children":1527},{"style":486},[1528],{"type":48,"value":722},{"type":42,"tag":462,"props":1530,"children":1531},{"style":486},[1532],{"type":48,"value":1017},{"type":42,"tag":462,"props":1534,"children":1535},{"class":464,"line":580},[1536],{"type":42,"tag":462,"props":1537,"children":1538},{"style":486},[1539],{"type":48,"value":1025},{"type":42,"tag":462,"props":1541,"children":1542},{"class":464,"line":589},[1543,1547,1551,1555,1559,1563,1568,1572],{"type":42,"tag":462,"props":1544,"children":1545},{"style":486},[1546],{"type":48,"value":1033},{"type":42,"tag":462,"props":1548,"children":1549},{"style":469},[1550],{"type":48,"value":927},{"type":42,"tag":462,"props":1552,"children":1553},{"style":486},[1554],{"type":48,"value":499},{"type":42,"tag":462,"props":1556,"children":1557},{"style":486},[1558],{"type":48,"value":722},{"type":42,"tag":462,"props":1560,"children":1561},{"style":486},[1562],{"type":48,"value":489},{"type":42,"tag":462,"props":1564,"children":1565},{"style":475},[1566],{"type":48,"value":1567},"alice@example.com",{"type":42,"tag":462,"props":1569,"children":1570},{"style":486},[1571],{"type":48,"value":499},{"type":42,"tag":462,"props":1573,"children":1574},{"style":486},[1575],{"type":48,"value":794},{"type":42,"tag":462,"props":1577,"children":1578},{"class":464,"line":598},[1579,1583,1587,1591,1595,1599,1604,1608],{"type":42,"tag":462,"props":1580,"children":1581},{"style":486},[1582],{"type":48,"value":1033},{"type":42,"tag":462,"props":1584,"children":1585},{"style":469},[1586],{"type":48,"value":964},{"type":42,"tag":462,"props":1588,"children":1589},{"style":486},[1590],{"type":48,"value":499},{"type":42,"tag":462,"props":1592,"children":1593},{"style":486},[1594],{"type":48,"value":722},{"type":42,"tag":462,"props":1596,"children":1597},{"style":486},[1598],{"type":48,"value":489},{"type":42,"tag":462,"props":1600,"children":1601},{"style":475},[1602],{"type":48,"value":1603},"Alice",{"type":42,"tag":462,"props":1605,"children":1606},{"style":486},[1607],{"type":48,"value":499},{"type":42,"tag":462,"props":1609,"children":1610},{"style":486},[1611],{"type":48,"value":794},{"type":42,"tag":462,"props":1613,"children":1614},{"class":464,"line":607},[1615,1619,1623,1627,1631,1636,1640,1646,1650,1654,1658,1662,1666,1671,1675,1680,1684,1688,1692,1697,1701],{"type":42,"tag":462,"props":1616,"children":1617},{"style":486},[1618],{"type":48,"value":1033},{"type":42,"tag":462,"props":1620,"children":1621},{"style":469},[1622],{"type":48,"value":1389},{"type":42,"tag":462,"props":1624,"children":1625},{"style":486},[1626],{"type":48,"value":499},{"type":42,"tag":462,"props":1628,"children":1629},{"style":486},[1630],{"type":48,"value":722},{"type":42,"tag":462,"props":1632,"children":1633},{"style":486},[1634],{"type":48,"value":1635}," {",{"type":42,"tag":462,"props":1637,"children":1638},{"style":486},[1639],{"type":48,"value":499},{"type":42,"tag":462,"props":1641,"children":1643},{"style":1642},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1644],{"type":48,"value":1645},"firstName",{"type":42,"tag":462,"props":1647,"children":1648},{"style":486},[1649],{"type":48,"value":499},{"type":42,"tag":462,"props":1651,"children":1652},{"style":486},[1653],{"type":48,"value":722},{"type":42,"tag":462,"props":1655,"children":1656},{"style":486},[1657],{"type":48,"value":489},{"type":42,"tag":462,"props":1659,"children":1660},{"style":475},[1661],{"type":48,"value":1603},{"type":42,"tag":462,"props":1663,"children":1664},{"style":486},[1665],{"type":48,"value":499},{"type":42,"tag":462,"props":1667,"children":1668},{"style":486},[1669],{"type":48,"value":1670},",",{"type":42,"tag":462,"props":1672,"children":1673},{"style":486},[1674],{"type":48,"value":489},{"type":42,"tag":462,"props":1676,"children":1677},{"style":1642},[1678],{"type":48,"value":1679},"orderId",{"type":42,"tag":462,"props":1681,"children":1682},{"style":486},[1683],{"type":48,"value":499},{"type":42,"tag":462,"props":1685,"children":1686},{"style":486},[1687],{"type":48,"value":722},{"type":42,"tag":462,"props":1689,"children":1690},{"style":486},[1691],{"type":48,"value":489},{"type":42,"tag":462,"props":1693,"children":1694},{"style":475},[1695],{"type":48,"value":1696},"123",{"type":42,"tag":462,"props":1698,"children":1699},{"style":486},[1700],{"type":48,"value":499},{"type":42,"tag":462,"props":1702,"children":1703},{"style":486},[1704],{"type":48,"value":835},{"type":42,"tag":462,"props":1706,"children":1707},{"class":464,"line":616},[1708],{"type":42,"tag":462,"props":1709,"children":1710},{"style":486},[1711],{"type":48,"value":586},{"type":42,"tag":462,"props":1713,"children":1714},{"class":464,"line":625},[1715],{"type":42,"tag":462,"props":1716,"children":1717},{"style":486},[1718],{"type":48,"value":1025},{"type":42,"tag":462,"props":1720,"children":1721},{"class":464,"line":634},[1722,1726,1730,1734,1738,1742,1747,1751],{"type":42,"tag":462,"props":1723,"children":1724},{"style":486},[1725],{"type":48,"value":1033},{"type":42,"tag":462,"props":1727,"children":1728},{"style":469},[1729],{"type":48,"value":927},{"type":42,"tag":462,"props":1731,"children":1732},{"style":486},[1733],{"type":48,"value":499},{"type":42,"tag":462,"props":1735,"children":1736},{"style":486},[1737],{"type":48,"value":722},{"type":42,"tag":462,"props":1739,"children":1740},{"style":486},[1741],{"type":48,"value":489},{"type":42,"tag":462,"props":1743,"children":1744},{"style":475},[1745],{"type":48,"value":1746},"bob@example.com",{"type":42,"tag":462,"props":1748,"children":1749},{"style":486},[1750],{"type":48,"value":499},{"type":42,"tag":462,"props":1752,"children":1753},{"style":486},[1754],{"type":48,"value":794},{"type":42,"tag":462,"props":1756,"children":1757},{"class":464,"line":643},[1758,1762,1766,1770,1774,1778,1783,1787],{"type":42,"tag":462,"props":1759,"children":1760},{"style":486},[1761],{"type":48,"value":1033},{"type":42,"tag":462,"props":1763,"children":1764},{"style":469},[1765],{"type":48,"value":964},{"type":42,"tag":462,"props":1767,"children":1768},{"style":486},[1769],{"type":48,"value":499},{"type":42,"tag":462,"props":1771,"children":1772},{"style":486},[1773],{"type":48,"value":722},{"type":42,"tag":462,"props":1775,"children":1776},{"style":486},[1777],{"type":48,"value":489},{"type":42,"tag":462,"props":1779,"children":1780},{"style":475},[1781],{"type":48,"value":1782},"Bob",{"type":42,"tag":462,"props":1784,"children":1785},{"style":486},[1786],{"type":48,"value":499},{"type":42,"tag":462,"props":1788,"children":1789},{"style":486},[1790],{"type":48,"value":794},{"type":42,"tag":462,"props":1792,"children":1793},{"class":464,"line":652},[1794,1798,1802,1806,1810,1814,1818,1822,1826,1830,1834,1838,1842,1846,1850,1854,1858,1862,1866,1871,1875],{"type":42,"tag":462,"props":1795,"children":1796},{"style":486},[1797],{"type":48,"value":1033},{"type":42,"tag":462,"props":1799,"children":1800},{"style":469},[1801],{"type":48,"value":1389},{"type":42,"tag":462,"props":1803,"children":1804},{"style":486},[1805],{"type":48,"value":499},{"type":42,"tag":462,"props":1807,"children":1808},{"style":486},[1809],{"type":48,"value":722},{"type":42,"tag":462,"props":1811,"children":1812},{"style":486},[1813],{"type":48,"value":1635},{"type":42,"tag":462,"props":1815,"children":1816},{"style":486},[1817],{"type":48,"value":499},{"type":42,"tag":462,"props":1819,"children":1820},{"style":1642},[1821],{"type":48,"value":1645},{"type":42,"tag":462,"props":1823,"children":1824},{"style":486},[1825],{"type":48,"value":499},{"type":42,"tag":462,"props":1827,"children":1828},{"style":486},[1829],{"type":48,"value":722},{"type":42,"tag":462,"props":1831,"children":1832},{"style":486},[1833],{"type":48,"value":489},{"type":42,"tag":462,"props":1835,"children":1836},{"style":475},[1837],{"type":48,"value":1782},{"type":42,"tag":462,"props":1839,"children":1840},{"style":486},[1841],{"type":48,"value":499},{"type":42,"tag":462,"props":1843,"children":1844},{"style":486},[1845],{"type":48,"value":1670},{"type":42,"tag":462,"props":1847,"children":1848},{"style":486},[1849],{"type":48,"value":489},{"type":42,"tag":462,"props":1851,"children":1852},{"style":1642},[1853],{"type":48,"value":1679},{"type":42,"tag":462,"props":1855,"children":1856},{"style":486},[1857],{"type":48,"value":499},{"type":42,"tag":462,"props":1859,"children":1860},{"style":486},[1861],{"type":48,"value":722},{"type":42,"tag":462,"props":1863,"children":1864},{"style":486},[1865],{"type":48,"value":489},{"type":42,"tag":462,"props":1867,"children":1868},{"style":475},[1869],{"type":48,"value":1870},"456",{"type":42,"tag":462,"props":1872,"children":1873},{"style":486},[1874],{"type":48,"value":499},{"type":42,"tag":462,"props":1876,"children":1877},{"style":486},[1878],{"type":48,"value":835},{"type":42,"tag":462,"props":1880,"children":1881},{"class":464,"line":661},[1882],{"type":42,"tag":462,"props":1883,"children":1884},{"style":486},[1885],{"type":48,"value":685},{"type":42,"tag":462,"props":1887,"children":1888},{"class":464,"line":670},[1889],{"type":42,"tag":462,"props":1890,"children":1891},{"style":486},[1892],{"type":48,"value":1191},{"type":42,"tag":462,"props":1894,"children":1895},{"class":464,"line":679},[1896,1900,1904,1908,1912],{"type":42,"tag":462,"props":1897,"children":1898},{"style":486},[1899],{"type":48,"value":763},{"type":42,"tag":462,"props":1901,"children":1902},{"style":766},[1903],{"type":48,"value":1203},{"type":42,"tag":462,"props":1905,"children":1906},{"style":486},[1907],{"type":48,"value":499},{"type":42,"tag":462,"props":1909,"children":1910},{"style":486},[1911],{"type":48,"value":722},{"type":42,"tag":462,"props":1913,"children":1914},{"style":486},[1915],{"type":48,"value":914},{"type":42,"tag":462,"props":1917,"children":1918},{"class":464,"line":688},[1919,1923,1927,1931,1935,1939,1944,1948],{"type":42,"tag":462,"props":1920,"children":1921},{"style":486},[1922],{"type":48,"value":922},{"type":42,"tag":462,"props":1924,"children":1925},{"style":469},[1926],{"type":48,"value":1227},{"type":42,"tag":462,"props":1928,"children":1929},{"style":486},[1930],{"type":48,"value":499},{"type":42,"tag":462,"props":1932,"children":1933},{"style":486},[1934],{"type":48,"value":722},{"type":42,"tag":462,"props":1936,"children":1937},{"style":486},[1938],{"type":48,"value":489},{"type":42,"tag":462,"props":1940,"children":1941},{"style":475},[1942],{"type":48,"value":1943},"Hi {{firstName}}, your order update",{"type":42,"tag":462,"props":1945,"children":1946},{"style":486},[1947],{"type":48,"value":499},{"type":42,"tag":462,"props":1949,"children":1950},{"style":486},[1951],{"type":48,"value":794},{"type":42,"tag":462,"props":1953,"children":1954},{"class":464,"line":706},[1955,1959,1963,1967,1971,1975,1980,1984],{"type":42,"tag":462,"props":1956,"children":1957},{"style":486},[1958],{"type":48,"value":922},{"type":42,"tag":462,"props":1960,"children":1961},{"style":469},[1962],{"type":48,"value":1264},{"type":42,"tag":462,"props":1964,"children":1965},{"style":486},[1966],{"type":48,"value":499},{"type":42,"tag":462,"props":1968,"children":1969},{"style":486},[1970],{"type":48,"value":722},{"type":42,"tag":462,"props":1972,"children":1973},{"style":486},[1974],{"type":48,"value":489},{"type":42,"tag":462,"props":1976,"children":1977},{"style":475},[1978],{"type":48,"value":1979},"\u003Cp>Hi {{firstName}}, order #{{orderId}} has shipped.\u003C\u002Fp>",{"type":42,"tag":462,"props":1981,"children":1982},{"style":486},[1983],{"type":48,"value":499},{"type":42,"tag":462,"props":1985,"children":1986},{"style":486},[1987],{"type":48,"value":794},{"type":42,"tag":462,"props":1989,"children":1990},{"class":464,"line":1332},[1991,1995,1999,2003,2007,2011,2016],{"type":42,"tag":462,"props":1992,"children":1993},{"style":486},[1994],{"type":48,"value":922},{"type":42,"tag":462,"props":1996,"children":1997},{"style":469},[1998],{"type":48,"value":48},{"type":42,"tag":462,"props":2000,"children":2001},{"style":486},[2002],{"type":48,"value":499},{"type":42,"tag":462,"props":2004,"children":2005},{"style":486},[2006],{"type":48,"value":722},{"type":42,"tag":462,"props":2008,"children":2009},{"style":486},[2010],{"type":48,"value":489},{"type":42,"tag":462,"props":2012,"children":2013},{"style":475},[2014],{"type":48,"value":2015},"Hi {{firstName}}, order #{{orderId}} has shipped.",{"type":42,"tag":462,"props":2017,"children":2018},{"style":486},[2019],{"type":48,"value":827},{"type":42,"tag":462,"props":2021,"children":2023},{"class":464,"line":2022},22,[2024],{"type":42,"tag":462,"props":2025,"children":2026},{"style":486},[2027],{"type":48,"value":1329},{"type":42,"tag":462,"props":2029,"children":2031},{"class":464,"line":2030},23,[2032],{"type":42,"tag":462,"props":2033,"children":2034},{"style":486},[2035],{"type":48,"value":835},{"type":42,"tag":55,"props":2037,"children":2038},{},[2039],{"type":48,"value":2040},"Ensure every recipient has all referenced variables defined.",{"type":42,"tag":308,"props":2042,"children":2043},{},[],{"type":42,"tag":43,"props":2045,"children":2047},{"id":2046},"operation-tracking",[2048],{"type":48,"value":2049},"Operation Tracking",{"type":42,"tag":55,"props":2051,"children":2052},{},[2053],{"type":48,"value":2054},"After submitting a send, use the Operation resource to monitor batch status.",{"type":42,"tag":2056,"props":2057,"children":2058},"ol",{},[2059,2084,2104],{"type":42,"tag":322,"props":2060,"children":2061},{},[2062,2064,2070,2072,2077,2079],{"type":48,"value":2063},"Submit email via ",{"type":42,"tag":77,"props":2065,"children":2067},{"className":2066},[],[2068],{"type":48,"value":2069},"POST \u002Fv1\u002Femails",{"type":48,"value":2071}," — response includes ",{"type":42,"tag":77,"props":2073,"children":2075},{"className":2074},[],[2076],{"type":48,"value":447},{"type":48,"value":2078}," and ",{"type":42,"tag":77,"props":2080,"children":2082},{"className":2081},[],[2083],{"type":48,"value":279},{"type":42,"tag":322,"props":2085,"children":2086},{},[2087,2089,2095,2097,2102],{"type":48,"value":2088},"Poll status via ",{"type":42,"tag":77,"props":2090,"children":2092},{"className":2091},[],[2093],{"type":48,"value":2094},"GET",{"type":48,"value":2096}," to the ",{"type":42,"tag":77,"props":2098,"children":2100},{"className":2099},[],[2101],{"type":48,"value":279},{"type":48,"value":2103}," URI",{"type":42,"tag":322,"props":2105,"children":2106},{},[2107],{"type":48,"value":2108},"The operation tracks progress for the entire batch",{"type":42,"tag":55,"props":2110,"children":2111},{},[2112],{"type":48,"value":2113},"This is especially important for large recipient lists where processing is not instantaneous.",{"type":42,"tag":308,"props":2115,"children":2116},{},[],{"type":42,"tag":43,"props":2118,"children":2120},{"id":2119},"error-codes",[2121],{"type":48,"value":2122},"Error Codes",{"type":42,"tag":94,"props":2124,"children":2125},{},[2126,2147],{"type":42,"tag":98,"props":2127,"children":2128},{},[2129],{"type":42,"tag":102,"props":2130,"children":2131},{},[2132,2137,2142],{"type":42,"tag":106,"props":2133,"children":2134},{},[2135],{"type":48,"value":2136},"Status Code",{"type":42,"tag":106,"props":2138,"children":2139},{},[2140],{"type":48,"value":2141},"Description",{"type":42,"tag":106,"props":2143,"children":2144},{},[2145],{"type":48,"value":2146},"Action",{"type":42,"tag":120,"props":2148,"children":2149},{},[2150,2178,2199,2220,2241,2262],{"type":42,"tag":102,"props":2151,"children":2152},{},[2153,2161,2166],{"type":42,"tag":127,"props":2154,"children":2155},{},[2156],{"type":42,"tag":59,"props":2157,"children":2158},{},[2159],{"type":48,"value":2160},"202",{"type":42,"tag":127,"props":2162,"children":2163},{},[2164],{"type":48,"value":2165},"Accepted",{"type":42,"tag":127,"props":2167,"children":2168},{},[2169,2171,2176],{"type":48,"value":2170},"Request accepted, Operation created. Poll ",{"type":42,"tag":77,"props":2172,"children":2174},{"className":2173},[],[2175],{"type":48,"value":279},{"type":48,"value":2177}," for status.",{"type":42,"tag":102,"props":2179,"children":2180},{},[2181,2189,2194],{"type":42,"tag":127,"props":2182,"children":2183},{},[2184],{"type":42,"tag":59,"props":2185,"children":2186},{},[2187],{"type":48,"value":2188},"400",{"type":42,"tag":127,"props":2190,"children":2191},{},[2192],{"type":48,"value":2193},"Bad Request",{"type":42,"tag":127,"props":2195,"children":2196},{},[2197],{"type":48,"value":2198},"Malformed or ambiguous request content. Check JSON payload.",{"type":42,"tag":102,"props":2200,"children":2201},{},[2202,2210,2215],{"type":42,"tag":127,"props":2203,"children":2204},{},[2205],{"type":42,"tag":59,"props":2206,"children":2207},{},[2208],{"type":48,"value":2209},"401",{"type":42,"tag":127,"props":2211,"children":2212},{},[2213],{"type":48,"value":2214},"Unauthorized",{"type":42,"tag":127,"props":2216,"children":2217},{},[2218],{"type":48,"value":2219},"Verify Account SID and Auth Token \u002F API Key are correct.",{"type":42,"tag":102,"props":2221,"children":2222},{},[2223,2231,2236],{"type":42,"tag":127,"props":2224,"children":2225},{},[2226],{"type":42,"tag":59,"props":2227,"children":2228},{},[2229],{"type":48,"value":2230},"429",{"type":42,"tag":127,"props":2232,"children":2233},{},[2234],{"type":48,"value":2235},"Too Many Requests",{"type":42,"tag":127,"props":2237,"children":2238},{},[2239],{"type":48,"value":2240},"Rate limited. Back off and retry.",{"type":42,"tag":102,"props":2242,"children":2243},{},[2244,2252,2257],{"type":42,"tag":127,"props":2245,"children":2246},{},[2247],{"type":42,"tag":59,"props":2248,"children":2249},{},[2250],{"type":48,"value":2251},"500",{"type":42,"tag":127,"props":2253,"children":2254},{},[2255],{"type":48,"value":2256},"Internal Server Error",{"type":42,"tag":127,"props":2258,"children":2259},{},[2260],{"type":48,"value":2261},"Twilio server-side issue. Retry with backoff.",{"type":42,"tag":102,"props":2263,"children":2264},{},[2265,2273,2278],{"type":42,"tag":127,"props":2266,"children":2267},{},[2268],{"type":42,"tag":59,"props":2269,"children":2270},{},[2271],{"type":48,"value":2272},"503",{"type":42,"tag":127,"props":2274,"children":2275},{},[2276],{"type":48,"value":2277},"Service Unavailable",{"type":42,"tag":127,"props":2279,"children":2280},{},[2281],{"type":48,"value":2282},"Temporarily unavailable. Retry after a short delay.",{"type":42,"tag":55,"props":2284,"children":2285},{},[2286],{"type":48,"value":2287},"Validation errors return as many issues as possible in a single response to help debug quickly.",{"type":42,"tag":308,"props":2289,"children":2290},{},[],{"type":42,"tag":43,"props":2292,"children":2294},{"id":2293},"cannot",[2295],{"type":48,"value":2296},"CANNOT",{"type":42,"tag":318,"props":2298,"children":2299},{},[2300,2324,2334,2344,2361,2387,2404],{"type":42,"tag":322,"props":2301,"children":2302},{},[2303,2308,2310,2315,2317,2322],{"type":42,"tag":59,"props":2304,"children":2305},{},[2306],{"type":48,"value":2307},"Cannot use SendGrid API keys",{"type":48,"value":2309}," — Twilio Email uses Twilio Account SID + Auth Token or API Key SID + Secret. ",{"type":42,"tag":77,"props":2311,"children":2313},{"className":2312},[],[2314],{"type":48,"value":82},{"type":48,"value":2316},"-prefix keys do not work. Use ",{"type":42,"tag":77,"props":2318,"children":2320},{"className":2319},[],[2321],{"type":48,"value":90},{"type":48,"value":2323}," for SendGrid.",{"type":42,"tag":322,"props":2325,"children":2326},{},[2327,2332],{"type":42,"tag":59,"props":2328,"children":2329},{},[2330],{"type":48,"value":2331},"Cannot send more than 10,000 recipients per request",{"type":48,"value":2333}," — Split into multiple requests for larger lists.",{"type":42,"tag":322,"props":2335,"children":2336},{},[2337,2342],{"type":42,"tag":59,"props":2338,"children":2339},{},[2340],{"type":48,"value":2341},"Cannot exceed 10MB per message",{"type":48,"value":2343}," — Total size including attachments must be under 10MB (smaller than SendGrid's 30MB limit).",{"type":42,"tag":322,"props":2345,"children":2346},{},[2347,2359],{"type":42,"tag":59,"props":2348,"children":2349},{},[2350,2352,2357],{"type":48,"value":2351},"Cannot use Unicode in the ",{"type":42,"tag":77,"props":2353,"children":2355},{"className":2354},[],[2356],{"type":48,"value":352},{"type":48,"value":2358}," field",{"type":48,"value":2360}," — Unicode encoding is not supported for sender addresses.",{"type":42,"tag":322,"props":2362,"children":2363},{},[2364,2369,2371,2377,2379,2385],{"type":42,"tag":59,"props":2365,"children":2366},{},[2367],{"type":48,"value":2368},"Cannot use Handlebars templating",{"type":48,"value":2370}," — Twilio Email uses Liquid, not Handlebars. If you see ",{"type":42,"tag":77,"props":2372,"children":2374},{"className":2373},[],[2375],{"type":48,"value":2376},"{{#if}}",{"type":48,"value":2378}," or ",{"type":42,"tag":77,"props":2380,"children":2382},{"className":2381},[],[2383],{"type":48,"value":2384},"{{#each}}",{"type":48,"value":2386},", that's Handlebars\u002FSendGrid syntax.",{"type":42,"tag":322,"props":2388,"children":2389},{},[2390,2395,2397,2402],{"type":42,"tag":59,"props":2391,"children":2392},{},[2393],{"type":48,"value":2394},"Cannot get synchronous delivery confirmation",{"type":48,"value":2396}," — The API is async. ",{"type":42,"tag":77,"props":2398,"children":2400},{"className":2399},[],[2401],{"type":48,"value":439},{"type":48,"value":2403}," means queued, not delivered. Poll the Operation resource for status.",{"type":42,"tag":322,"props":2405,"children":2406},{},[2407,2412],{"type":42,"tag":59,"props":2408,"children":2409},{},[2410],{"type":48,"value":2411},"Tags total length cannot exceed 10,000 bytes",{"type":48,"value":2413}," — Combined length of all tags on a request is limited.",{"type":42,"tag":308,"props":2415,"children":2416},{},[],{"type":42,"tag":43,"props":2418,"children":2420},{"id":2419},"next-steps",[2421],{"type":48,"value":2422},"Next Steps",{"type":42,"tag":318,"props":2424,"children":2425},{},[2426,2441,2455],{"type":42,"tag":322,"props":2427,"children":2428},{},[2429,2434,2436],{"type":42,"tag":59,"props":2430,"children":2431},{},[2432],{"type":48,"value":2433},"Account setup and credentials:",{"type":48,"value":2435}," ",{"type":42,"tag":77,"props":2437,"children":2439},{"className":2438},[],[2440],{"type":48,"value":332},{"type":42,"tag":322,"props":2442,"children":2443},{},[2444,2449,2450],{"type":42,"tag":59,"props":2445,"children":2446},{},[2447],{"type":48,"value":2448},"SendGrid email (separate product):",{"type":48,"value":2435},{"type":42,"tag":77,"props":2451,"children":2453},{"className":2452},[],[2454],{"type":48,"value":90},{"type":42,"tag":322,"props":2456,"children":2457},{},[2458,2463,2464],{"type":42,"tag":59,"props":2459,"children":2460},{},[2461],{"type":48,"value":2462},"SMS sending:",{"type":48,"value":2435},{"type":42,"tag":77,"props":2465,"children":2467},{"className":2466},[],[2468],{"type":48,"value":2469},"twilio-sms-send-message",{"type":42,"tag":2471,"props":2472,"children":2473},"style",{},[2474],{"type":48,"value":2475},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2477,"total":2598},[2478,2496,2512,2524,2544,2566,2586],{"slug":2479,"name":2479,"fn":2480,"description":2481,"org":2482,"tags":2483,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2484,2487,2490,2493],{"name":2485,"slug":2486,"type":15},"Accessibility","accessibility",{"name":2488,"slug":2489,"type":15},"Charts","charts",{"name":2491,"slug":2492,"type":15},"Data Visualization","data-visualization",{"name":2494,"slug":2495,"type":15},"Design","design",{"slug":2497,"name":2497,"fn":2498,"description":2499,"org":2500,"tags":2501,"stars":25,"repoUrl":26,"updatedAt":2511},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2502,2505,2508],{"name":2503,"slug":2504,"type":15},"Agents","agents",{"name":2506,"slug":2507,"type":15},"Browser Automation","browser-automation",{"name":2509,"slug":2510,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2513,"name":2513,"fn":2514,"description":2515,"org":2516,"tags":2517,"stars":25,"repoUrl":26,"updatedAt":2523},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2518,2519,2522],{"name":2506,"slug":2507,"type":15},{"name":2520,"slug":2521,"type":15},"Local Development","local-development",{"name":2509,"slug":2510,"type":15},"2026-04-06T18:41:17.526867",{"slug":2525,"name":2525,"fn":2526,"description":2527,"org":2528,"tags":2529,"stars":25,"repoUrl":26,"updatedAt":2543},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2530,2531,2534,2537,2540],{"name":2503,"slug":2504,"type":15},{"name":2532,"slug":2533,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2535,"slug":2536,"type":15},"SDK","sdk",{"name":2538,"slug":2539,"type":15},"Serverless","serverless",{"name":2541,"slug":2542,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2545,"name":2545,"fn":2546,"description":2547,"org":2548,"tags":2549,"stars":25,"repoUrl":26,"updatedAt":2565},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2550,2553,2556,2559,2562],{"name":2551,"slug":2552,"type":15},"Frontend","frontend",{"name":2554,"slug":2555,"type":15},"React","react",{"name":2557,"slug":2558,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2560,"slug":2561,"type":15},"UI Components","ui-components",{"name":2563,"slug":2564,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2567,"name":2567,"fn":2568,"description":2569,"org":2570,"tags":2571,"stars":25,"repoUrl":26,"updatedAt":2585},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2572,2575,2578,2581,2584],{"name":2573,"slug":2574,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2576,"slug":2577,"type":15},"Cost Optimization","cost-optimization",{"name":2579,"slug":2580,"type":15},"LLM","llm",{"name":2582,"slug":2583,"type":15},"Performance","performance",{"name":2563,"slug":2564,"type":15},"2026-04-06T18:40:44.377464",{"slug":2587,"name":2587,"fn":2588,"description":2589,"org":2590,"tags":2591,"stars":25,"repoUrl":26,"updatedAt":2597},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2592,2593,2596],{"name":2576,"slug":2577,"type":15},{"name":2594,"slug":2595,"type":15},"Database","database",{"name":2579,"slug":2580,"type":15},"2026-04-06T18:41:08.513425",600,{"items":2600,"total":2795},[2601,2622,2645,2662,2676,2693,2712,2724,2738,2752,2764,2779],{"slug":2602,"name":2602,"fn":2603,"description":2604,"org":2605,"tags":2606,"stars":2619,"repoUrl":2620,"updatedAt":2621},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2607,2610,2613,2616],{"name":2608,"slug":2609,"type":15},"Documents","documents",{"name":2611,"slug":2612,"type":15},"Healthcare","healthcare",{"name":2614,"slug":2615,"type":15},"Insurance","insurance",{"name":2617,"slug":2618,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2623,"name":2623,"fn":2624,"description":2625,"org":2626,"tags":2627,"stars":2642,"repoUrl":2643,"updatedAt":2644},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2628,2631,2633,2636,2639],{"name":2629,"slug":2630,"type":15},".NET","dotnet",{"name":2632,"slug":2623,"type":15},"ASP.NET Core",{"name":2634,"slug":2635,"type":15},"Blazor","blazor",{"name":2637,"slug":2638,"type":15},"C#","csharp",{"name":2640,"slug":2641,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2646,"name":2646,"fn":2647,"description":2648,"org":2649,"tags":2650,"stars":2642,"repoUrl":2643,"updatedAt":2661},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2651,2654,2657,2660],{"name":2652,"slug":2653,"type":15},"Apps SDK","apps-sdk",{"name":2655,"slug":2656,"type":15},"ChatGPT","chatgpt",{"name":2658,"slug":2659,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2663,"name":2663,"fn":2664,"description":2665,"org":2666,"tags":2667,"stars":2642,"repoUrl":2643,"updatedAt":2675},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2668,2669,2672],{"name":13,"slug":14,"type":15},{"name":2670,"slug":2671,"type":15},"CLI","cli",{"name":2673,"slug":2674,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2677,"name":2677,"fn":2678,"description":2679,"org":2680,"tags":2681,"stars":2642,"repoUrl":2643,"updatedAt":2692},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2682,2685,2688,2689],{"name":2683,"slug":2684,"type":15},"Cloudflare","cloudflare",{"name":2686,"slug":2687,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2532,"slug":2533,"type":15},{"name":2690,"slug":2691,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2694,"name":2694,"fn":2695,"description":2696,"org":2697,"tags":2698,"stars":2642,"repoUrl":2643,"updatedAt":2711},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2699,2702,2705,2708],{"name":2700,"slug":2701,"type":15},"Productivity","productivity",{"name":2703,"slug":2704,"type":15},"Project Management","project-management",{"name":2706,"slug":2707,"type":15},"Strategy","strategy",{"name":2709,"slug":2710,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2713,"name":2713,"fn":2714,"description":2715,"org":2716,"tags":2717,"stars":2642,"repoUrl":2643,"updatedAt":2723},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2718,2719,2721,2722],{"name":2494,"slug":2495,"type":15},{"name":2720,"slug":2713,"type":15},"Figma",{"name":2551,"slug":2552,"type":15},{"name":2658,"slug":2659,"type":15},"2026-04-12T05:06:47.939943",{"slug":2725,"name":2725,"fn":2726,"description":2727,"org":2728,"tags":2729,"stars":2642,"repoUrl":2643,"updatedAt":2737},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2730,2731,2734,2735,2736],{"name":2494,"slug":2495,"type":15},{"name":2732,"slug":2733,"type":15},"Design System","design-system",{"name":2720,"slug":2713,"type":15},{"name":2551,"slug":2552,"type":15},{"name":2560,"slug":2561,"type":15},"2026-05-10T05:59:52.971881",{"slug":2739,"name":2739,"fn":2740,"description":2741,"org":2742,"tags":2743,"stars":2642,"repoUrl":2643,"updatedAt":2751},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2744,2745,2746,2749,2750],{"name":2494,"slug":2495,"type":15},{"name":2732,"slug":2733,"type":15},{"name":2747,"slug":2748,"type":15},"Documentation","documentation",{"name":2720,"slug":2713,"type":15},{"name":2551,"slug":2552,"type":15},"2026-05-16T06:07:47.821474",{"slug":2753,"name":2753,"fn":2754,"description":2755,"org":2756,"tags":2757,"stars":2642,"repoUrl":2643,"updatedAt":2763},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2758,2759,2760,2761,2762],{"name":2494,"slug":2495,"type":15},{"name":2720,"slug":2713,"type":15},{"name":2551,"slug":2552,"type":15},{"name":2560,"slug":2561,"type":15},{"name":2640,"slug":2641,"type":15},"2026-05-16T06:07:40.583615",{"slug":2765,"name":2765,"fn":2766,"description":2767,"org":2768,"tags":2769,"stars":2642,"repoUrl":2643,"updatedAt":2778},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2770,2773,2774,2777],{"name":2771,"slug":2772,"type":15},"Animation","animation",{"name":2673,"slug":2674,"type":15},{"name":2775,"slug":2776,"type":15},"Creative","creative",{"name":2494,"slug":2495,"type":15},"2026-05-02T05:31:48.48485",{"slug":2780,"name":2780,"fn":2781,"description":2782,"org":2783,"tags":2784,"stars":2642,"repoUrl":2643,"updatedAt":2794},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2785,2786,2787,2790,2793],{"name":2775,"slug":2776,"type":15},{"name":2494,"slug":2495,"type":15},{"name":2788,"slug":2789,"type":15},"Image Generation","image-generation",{"name":2791,"slug":2792,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]