[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-twilio-twilio-email-send":3,"mdc-qm7r69-key":30,"related-org-twilio-twilio-email-send":2469,"related-repo-twilio-twilio-email-send":2649},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":28,"mdContent":29},"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},"twilio","Twilio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftwilio.png",[12,16,19],{"name":13,"slug":14,"type":15},"API Development","api-development","tag",{"name":17,"slug":18,"type":15},"Email","email",{"name":9,"slug":8,"type":15},25,"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai","2026-07-17T06:07:48.545662",null,7,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":23},[],"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Ftwilio\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":31,"body":32},{"name":4,"description":6},{"type":33,"children":34},"root",[35,44,60,87,301,305,311,354,359,362,368,380,393,398,401,407,416,444,721,733,829,841,844,850,870,1331,1334,1340,1392,2029,2034,2037,2043,2048,2102,2107,2110,2116,2276,2281,2284,2290,2407,2410,2416,2463],{"type":36,"tag":37,"props":38,"children":40},"element","h2",{"id":39},"overview",[41],{"type":42,"value":43},"text","Overview",{"type":36,"tag":45,"props":46,"children":47},"blockquote",{},[48],{"type":36,"tag":49,"props":50,"children":51},"p",{},[52,58],{"type":36,"tag":53,"props":54,"children":55},"strong",{},[56],{"type":42,"value":57},"Agent safety:",{"type":42,"value":59}," 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":36,"tag":49,"props":61,"children":62},{},[63,68,70,77,79,85],{"type":36,"tag":53,"props":64,"children":65},{},[66],{"type":42,"value":67},"Twilio Email is a separate product from SendGrid.",{"type":42,"value":69}," Both send email, but they use different APIs, credentials, templating languages, and endpoints. If you have a SendGrid API key (",{"type":36,"tag":71,"props":72,"children":74},"code",{"className":73},[],[75],{"type":42,"value":76},"SG.",{"type":42,"value":78},"-prefix), use ",{"type":36,"tag":71,"props":80,"children":82},{"className":81},[],[83],{"type":42,"value":84},"twilio-sendgrid-email-send",{"type":42,"value":86}," instead.",{"type":36,"tag":88,"props":89,"children":90},"table",{},[91,113],{"type":36,"tag":92,"props":93,"children":94},"thead",{},[95],{"type":36,"tag":96,"props":97,"children":98},"tr",{},[99,103,108],{"type":36,"tag":100,"props":101,"children":102},"th",{},[],{"type":36,"tag":100,"props":104,"children":105},{},[106],{"type":42,"value":107},"Twilio Email (this skill)",{"type":36,"tag":100,"props":109,"children":110},{},[111],{"type":42,"value":112},"SendGrid",{"type":36,"tag":114,"props":115,"children":116},"tbody",{},[117,147,175,210,231,252,280],{"type":36,"tag":96,"props":118,"children":119},{},[120,129,138],{"type":36,"tag":121,"props":122,"children":123},"td",{},[124],{"type":36,"tag":53,"props":125,"children":126},{},[127],{"type":42,"value":128},"Base URL",{"type":36,"tag":121,"props":130,"children":131},{},[132],{"type":36,"tag":71,"props":133,"children":135},{"className":134},[],[136],{"type":42,"value":137},"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002Femails",{"type":36,"tag":121,"props":139,"children":140},{},[141],{"type":36,"tag":71,"props":142,"children":144},{"className":143},[],[145],{"type":42,"value":146},"https:\u002F\u002Fapi.sendgrid.com\u002Fv3\u002Fmail\u002Fsend",{"type":36,"tag":96,"props":148,"children":149},{},[150,158,163],{"type":36,"tag":121,"props":151,"children":152},{},[153],{"type":36,"tag":53,"props":154,"children":155},{},[156],{"type":42,"value":157},"Auth",{"type":36,"tag":121,"props":159,"children":160},{},[161],{"type":42,"value":162},"Twilio Account SID + Auth Token (or API Key SID + Secret)",{"type":36,"tag":121,"props":164,"children":165},{},[166,168,173],{"type":42,"value":167},"SendGrid API key (",{"type":36,"tag":71,"props":169,"children":171},{"className":170},[],[172],{"type":42,"value":76},{"type":42,"value":174},"-prefix)",{"type":36,"tag":96,"props":176,"children":177},{},[178,186,199],{"type":36,"tag":121,"props":179,"children":180},{},[181],{"type":36,"tag":53,"props":182,"children":183},{},[184],{"type":42,"value":185},"Templating",{"type":36,"tag":121,"props":187,"children":188},{},[189,191,197],{"type":42,"value":190},"Liquid (",{"type":36,"tag":71,"props":192,"children":194},{"className":193},[],[195],{"type":42,"value":196},"{{variable}}",{"type":42,"value":198},")",{"type":36,"tag":121,"props":200,"children":201},{},[202,204,209],{"type":42,"value":203},"Handlebars (",{"type":36,"tag":71,"props":205,"children":207},{"className":206},[],[208],{"type":42,"value":196},{"type":42,"value":198},{"type":36,"tag":96,"props":211,"children":212},{},[213,221,226],{"type":36,"tag":121,"props":214,"children":215},{},[216],{"type":36,"tag":53,"props":217,"children":218},{},[219],{"type":42,"value":220},"Max recipients\u002Frequest",{"type":36,"tag":121,"props":222,"children":223},{},[224],{"type":42,"value":225},"10,000",{"type":36,"tag":121,"props":227,"children":228},{},[229],{"type":42,"value":230},"1,000",{"type":36,"tag":96,"props":232,"children":233},{},[234,242,247],{"type":36,"tag":121,"props":235,"children":236},{},[237],{"type":36,"tag":53,"props":238,"children":239},{},[240],{"type":42,"value":241},"Max message size",{"type":36,"tag":121,"props":243,"children":244},{},[245],{"type":42,"value":246},"10MB (including attachments)",{"type":36,"tag":121,"props":248,"children":249},{},[250],{"type":42,"value":251},"30MB",{"type":36,"tag":96,"props":253,"children":254},{},[255,263,275],{"type":36,"tag":121,"props":256,"children":257},{},[258],{"type":36,"tag":53,"props":259,"children":260},{},[261],{"type":42,"value":262},"Status tracking",{"type":36,"tag":121,"props":264,"children":265},{},[266,268,274],{"type":42,"value":267},"Operation resource (poll ",{"type":36,"tag":71,"props":269,"children":271},{"className":270},[],[272],{"type":42,"value":273},"operationLocation",{"type":42,"value":198},{"type":36,"tag":121,"props":276,"children":277},{},[278],{"type":42,"value":279},"Event Webhooks (async POST)",{"type":36,"tag":96,"props":281,"children":282},{},[283,291,296],{"type":36,"tag":121,"props":284,"children":285},{},[286],{"type":36,"tag":53,"props":287,"children":288},{},[289],{"type":42,"value":290},"Console",{"type":36,"tag":121,"props":292,"children":293},{},[294],{"type":42,"value":295},"console.twilio.com",{"type":36,"tag":121,"props":297,"children":298},{},[299],{"type":42,"value":300},"app.sendgrid.com",{"type":36,"tag":302,"props":303,"children":304},"hr",{},[],{"type":36,"tag":37,"props":306,"children":308},{"id":307},"prerequisites",[309],{"type":42,"value":310},"Prerequisites",{"type":36,"tag":312,"props":313,"children":314},"ul",{},[315,329,349],{"type":36,"tag":316,"props":317,"children":318},"li",{},[319,321,327],{"type":42,"value":320},"A Twilio account — see ",{"type":36,"tag":71,"props":322,"children":324},{"className":323},[],[325],{"type":42,"value":326},"twilio-account-setup",{"type":42,"value":328}," for signup and credentials",{"type":36,"tag":316,"props":330,"children":331},{},[332,334,339,341,347],{"type":42,"value":333},"A ",{"type":36,"tag":53,"props":335,"children":336},{},[337],{"type":42,"value":338},"Verified Sender",{"type":42,"value":340},": an approved domain identity configured in the Twilio console that must match the ",{"type":36,"tag":71,"props":342,"children":344},{"className":343},[],[345],{"type":42,"value":346},"from",{"type":42,"value":348}," address domain",{"type":36,"tag":316,"props":350,"children":351},{},[352],{"type":42,"value":353},"Compliance with regional anti-spam regulations (CAN-SPAM, GDPR)",{"type":36,"tag":49,"props":355,"children":356},{},[357],{"type":42,"value":358},"For a complete setup guide, see the Email Onboarding guide in the Twilio console.",{"type":36,"tag":302,"props":360,"children":361},{},[],{"type":36,"tag":37,"props":363,"children":365},{"id":364},"authentication",[366],{"type":42,"value":367},"Authentication",{"type":36,"tag":49,"props":369,"children":370},{},[371,373,378],{"type":42,"value":372},"The API uses ",{"type":36,"tag":53,"props":374,"children":375},{},[376],{"type":42,"value":377},"Basic Authentication",{"type":42,"value":379}," with either:",{"type":36,"tag":312,"props":381,"children":382},{},[383,388],{"type":36,"tag":316,"props":384,"children":385},{},[386],{"type":42,"value":387},"Account SID + Auth Token",{"type":36,"tag":316,"props":389,"children":390},{},[391],{"type":42,"value":392},"API Key SID + API Key Secret",{"type":36,"tag":49,"props":394,"children":395},{},[396],{"type":42,"value":397},"These are standard Twilio credentials — the same ones used for SMS, Voice, and other Twilio APIs.",{"type":36,"tag":302,"props":399,"children":400},{},[],{"type":36,"tag":37,"props":402,"children":404},{"id":403},"send-a-simple-email",[405],{"type":42,"value":406},"Send a Simple Email",{"type":36,"tag":49,"props":408,"children":409},{},[410],{"type":36,"tag":71,"props":411,"children":413},{"className":412},[],[414],{"type":42,"value":415},"POST https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails",{"type":36,"tag":49,"props":417,"children":418},{},[419,421,426,428,434,436,442],{"type":42,"value":420},"The endpoint is ",{"type":36,"tag":53,"props":422,"children":423},{},[424],{"type":42,"value":425},"asynchronous",{"type":42,"value":427}," — it returns ",{"type":36,"tag":71,"props":429,"children":431},{"className":430},[],[432],{"type":42,"value":433},"202 Accepted",{"type":42,"value":435}," with an ",{"type":36,"tag":71,"props":437,"children":439},{"className":438},[],[440],{"type":42,"value":441},"operationId",{"type":42,"value":443},", not a delivery confirmation.",{"type":36,"tag":445,"props":446,"children":451},"pre",{"className":447,"code":448,"language":449,"meta":450,"style":450},"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","",[452],{"type":36,"tag":71,"props":453,"children":454},{"__ignoreMap":450},[455,500,526,545,554,563,572,580,589,598,607,616,625,634,643,652,661,670,679,697],{"type":36,"tag":456,"props":457,"children":460},"span",{"class":458,"line":459},"line",1,[461,467,473,478,484,489,494],{"type":36,"tag":456,"props":462,"children":464},{"style":463},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[465],{"type":42,"value":466},"curl",{"type":36,"tag":456,"props":468,"children":470},{"style":469},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[471],{"type":42,"value":472}," -X",{"type":36,"tag":456,"props":474,"children":475},{"style":469},[476],{"type":42,"value":477}," POST",{"type":36,"tag":456,"props":479,"children":481},{"style":480},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[482],{"type":42,"value":483}," \"",{"type":36,"tag":456,"props":485,"children":486},{"style":469},[487],{"type":42,"value":488},"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails",{"type":36,"tag":456,"props":490,"children":491},{"style":480},[492],{"type":42,"value":493},"\"",{"type":36,"tag":456,"props":495,"children":497},{"style":496},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[498],{"type":42,"value":499}," \\\n",{"type":36,"tag":456,"props":501,"children":503},{"class":458,"line":502},2,[504,509,513,518,522],{"type":36,"tag":456,"props":505,"children":506},{"style":469},[507],{"type":42,"value":508},"  --header",{"type":36,"tag":456,"props":510,"children":511},{"style":480},[512],{"type":42,"value":483},{"type":36,"tag":456,"props":514,"children":515},{"style":469},[516],{"type":42,"value":517},"Content-Type: application\u002Fjson",{"type":36,"tag":456,"props":519,"children":520},{"style":480},[521],{"type":42,"value":493},{"type":36,"tag":456,"props":523,"children":524},{"style":496},[525],{"type":42,"value":499},{"type":36,"tag":456,"props":527,"children":529},{"class":458,"line":528},3,[530,535,540],{"type":36,"tag":456,"props":531,"children":532},{"style":469},[533],{"type":42,"value":534},"  --data",{"type":36,"tag":456,"props":536,"children":537},{"style":480},[538],{"type":42,"value":539}," '",{"type":36,"tag":456,"props":541,"children":542},{"style":469},[543],{"type":42,"value":544},"{\n",{"type":36,"tag":456,"props":546,"children":548},{"class":458,"line":547},4,[549],{"type":36,"tag":456,"props":550,"children":551},{"style":469},[552],{"type":42,"value":553},"    \"from\": {\n",{"type":36,"tag":456,"props":555,"children":557},{"class":458,"line":556},5,[558],{"type":36,"tag":456,"props":559,"children":560},{"style":469},[561],{"type":42,"value":562},"      \"address\": \"support@example.com\",\n",{"type":36,"tag":456,"props":564,"children":566},{"class":458,"line":565},6,[567],{"type":36,"tag":456,"props":568,"children":569},{"style":469},[570],{"type":42,"value":571},"      \"name\": \"Support Team\"\n",{"type":36,"tag":456,"props":573,"children":574},{"class":458,"line":24},[575],{"type":36,"tag":456,"props":576,"children":577},{"style":469},[578],{"type":42,"value":579},"    },\n",{"type":36,"tag":456,"props":581,"children":583},{"class":458,"line":582},8,[584],{"type":36,"tag":456,"props":585,"children":586},{"style":469},[587],{"type":42,"value":588},"    \"to\": [\n",{"type":36,"tag":456,"props":590,"children":592},{"class":458,"line":591},9,[593],{"type":36,"tag":456,"props":594,"children":595},{"style":469},[596],{"type":42,"value":597},"      {\n",{"type":36,"tag":456,"props":599,"children":601},{"class":458,"line":600},10,[602],{"type":36,"tag":456,"props":603,"children":604},{"style":469},[605],{"type":42,"value":606},"        \"address\": \"john.doe@example.com\",\n",{"type":36,"tag":456,"props":608,"children":610},{"class":458,"line":609},11,[611],{"type":36,"tag":456,"props":612,"children":613},{"style":469},[614],{"type":42,"value":615},"        \"name\": \"John Doe\"\n",{"type":36,"tag":456,"props":617,"children":619},{"class":458,"line":618},12,[620],{"type":36,"tag":456,"props":621,"children":622},{"style":469},[623],{"type":42,"value":624},"      }\n",{"type":36,"tag":456,"props":626,"children":628},{"class":458,"line":627},13,[629],{"type":36,"tag":456,"props":630,"children":631},{"style":469},[632],{"type":42,"value":633},"    ],\n",{"type":36,"tag":456,"props":635,"children":637},{"class":458,"line":636},14,[638],{"type":36,"tag":456,"props":639,"children":640},{"style":469},[641],{"type":42,"value":642},"    \"content\": {\n",{"type":36,"tag":456,"props":644,"children":646},{"class":458,"line":645},15,[647],{"type":36,"tag":456,"props":648,"children":649},{"style":469},[650],{"type":42,"value":651},"      \"subject\": \"Your subject line\",\n",{"type":36,"tag":456,"props":653,"children":655},{"class":458,"line":654},16,[656],{"type":36,"tag":456,"props":657,"children":658},{"style":469},[659],{"type":42,"value":660},"      \"html\": \"\u003Cp>Your message content in HTML format.\u003C\u002Fp>\",\n",{"type":36,"tag":456,"props":662,"children":664},{"class":458,"line":663},17,[665],{"type":36,"tag":456,"props":666,"children":667},{"style":469},[668],{"type":42,"value":669},"      \"text\": \"Your message content in plain text.\"\n",{"type":36,"tag":456,"props":671,"children":673},{"class":458,"line":672},18,[674],{"type":36,"tag":456,"props":675,"children":676},{"style":469},[677],{"type":42,"value":678},"    }\n",{"type":36,"tag":456,"props":680,"children":682},{"class":458,"line":681},19,[683,688,693],{"type":36,"tag":456,"props":684,"children":685},{"style":469},[686],{"type":42,"value":687},"  }",{"type":36,"tag":456,"props":689,"children":690},{"style":480},[691],{"type":42,"value":692},"'",{"type":36,"tag":456,"props":694,"children":695},{"style":496},[696],{"type":42,"value":499},{"type":36,"tag":456,"props":698,"children":700},{"class":458,"line":699},20,[701,706,711,716],{"type":36,"tag":456,"props":702,"children":703},{"style":469},[704],{"type":42,"value":705},"  -u",{"type":36,"tag":456,"props":707,"children":708},{"style":496},[709],{"type":42,"value":710}," $TWILIO_ACCOUNT_SID",{"type":36,"tag":456,"props":712,"children":713},{"style":469},[714],{"type":42,"value":715},":",{"type":36,"tag":456,"props":717,"children":718},{"style":496},[719],{"type":42,"value":720},"$TWILIO_AUTH_TOKEN\n",{"type":36,"tag":49,"props":722,"children":723},{},[724,726,731],{"type":42,"value":725},"Response (",{"type":36,"tag":71,"props":727,"children":729},{"className":728},[],[730],{"type":42,"value":433},{"type":42,"value":732},"):",{"type":36,"tag":445,"props":734,"children":738},{"className":735,"code":736,"language":737,"meta":450,"style":450},"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",[739],{"type":36,"tag":71,"props":740,"children":741},{"__ignoreMap":450},[742,749,788,821],{"type":36,"tag":456,"props":743,"children":744},{"class":458,"line":459},[745],{"type":36,"tag":456,"props":746,"children":747},{"style":480},[748],{"type":42,"value":544},{"type":36,"tag":456,"props":750,"children":751},{"class":458,"line":502},[752,757,762,766,770,774,779,783],{"type":36,"tag":456,"props":753,"children":754},{"style":480},[755],{"type":42,"value":756},"  \"",{"type":36,"tag":456,"props":758,"children":760},{"style":759},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[761],{"type":42,"value":441},{"type":36,"tag":456,"props":763,"children":764},{"style":480},[765],{"type":42,"value":493},{"type":36,"tag":456,"props":767,"children":768},{"style":480},[769],{"type":42,"value":715},{"type":36,"tag":456,"props":771,"children":772},{"style":480},[773],{"type":42,"value":483},{"type":36,"tag":456,"props":775,"children":776},{"style":469},[777],{"type":42,"value":778},"...",{"type":36,"tag":456,"props":780,"children":781},{"style":480},[782],{"type":42,"value":493},{"type":36,"tag":456,"props":784,"children":785},{"style":480},[786],{"type":42,"value":787},",\n",{"type":36,"tag":456,"props":789,"children":790},{"class":458,"line":528},[791,795,799,803,807,811,816],{"type":36,"tag":456,"props":792,"children":793},{"style":480},[794],{"type":42,"value":756},{"type":36,"tag":456,"props":796,"children":797},{"style":759},[798],{"type":42,"value":273},{"type":36,"tag":456,"props":800,"children":801},{"style":480},[802],{"type":42,"value":493},{"type":36,"tag":456,"props":804,"children":805},{"style":480},[806],{"type":42,"value":715},{"type":36,"tag":456,"props":808,"children":809},{"style":480},[810],{"type":42,"value":483},{"type":36,"tag":456,"props":812,"children":813},{"style":469},[814],{"type":42,"value":815},"https:\u002F\u002Fcomms.twilio.com\u002Fv1\u002FEmails\u002FOperations\u002F...",{"type":36,"tag":456,"props":817,"children":818},{"style":480},[819],{"type":42,"value":820},"\"\n",{"type":36,"tag":456,"props":822,"children":823},{"class":458,"line":547},[824],{"type":36,"tag":456,"props":825,"children":826},{"style":480},[827],{"type":42,"value":828},"}\n",{"type":36,"tag":49,"props":830,"children":831},{},[832,834,839],{"type":42,"value":833},"Poll ",{"type":36,"tag":71,"props":835,"children":837},{"className":836},[],[838],{"type":42,"value":273},{"type":42,"value":840}," to track delivery status.",{"type":36,"tag":302,"props":842,"children":843},{},[],{"type":36,"tag":37,"props":845,"children":847},{"id":846},"batch-sending",[848],{"type":42,"value":849},"Batch Sending",{"type":36,"tag":49,"props":851,"children":852},{},[853,855,861,863,868],{"type":42,"value":854},"Send the same message to multiple recipients in a single request by adding entries to the ",{"type":36,"tag":71,"props":856,"children":858},{"className":857},[],[859],{"type":42,"value":860},"to",{"type":42,"value":862}," array. Maximum ",{"type":36,"tag":53,"props":864,"children":865},{},[866],{"type":42,"value":867},"10,000 recipients",{"type":42,"value":869}," per request.",{"type":36,"tag":445,"props":871,"children":873},{"className":735,"code":872,"language":737,"meta":450,"style":450},"{\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",[874],{"type":36,"tag":71,"props":875,"children":876},{"__ignoreMap":450},[877,884,908,946,979,987,1011,1019,1056,1088,1095,1102,1138,1170,1177,1185,1209,1246,1283,1315,1323],{"type":36,"tag":456,"props":878,"children":879},{"class":458,"line":459},[880],{"type":36,"tag":456,"props":881,"children":882},{"style":480},[883],{"type":42,"value":544},{"type":36,"tag":456,"props":885,"children":886},{"class":458,"line":502},[887,891,895,899,903],{"type":36,"tag":456,"props":888,"children":889},{"style":480},[890],{"type":42,"value":756},{"type":36,"tag":456,"props":892,"children":893},{"style":759},[894],{"type":42,"value":346},{"type":36,"tag":456,"props":896,"children":897},{"style":480},[898],{"type":42,"value":493},{"type":36,"tag":456,"props":900,"children":901},{"style":480},[902],{"type":42,"value":715},{"type":36,"tag":456,"props":904,"children":905},{"style":480},[906],{"type":42,"value":907}," {\n",{"type":36,"tag":456,"props":909,"children":910},{"class":458,"line":528},[911,916,921,925,929,933,938,942],{"type":36,"tag":456,"props":912,"children":913},{"style":480},[914],{"type":42,"value":915},"    \"",{"type":36,"tag":456,"props":917,"children":918},{"style":463},[919],{"type":42,"value":920},"address",{"type":36,"tag":456,"props":922,"children":923},{"style":480},[924],{"type":42,"value":493},{"type":36,"tag":456,"props":926,"children":927},{"style":480},[928],{"type":42,"value":715},{"type":36,"tag":456,"props":930,"children":931},{"style":480},[932],{"type":42,"value":483},{"type":36,"tag":456,"props":934,"children":935},{"style":469},[936],{"type":42,"value":937},"support@example.com",{"type":36,"tag":456,"props":939,"children":940},{"style":480},[941],{"type":42,"value":493},{"type":36,"tag":456,"props":943,"children":944},{"style":480},[945],{"type":42,"value":787},{"type":36,"tag":456,"props":947,"children":948},{"class":458,"line":547},[949,953,958,962,966,970,975],{"type":36,"tag":456,"props":950,"children":951},{"style":480},[952],{"type":42,"value":915},{"type":36,"tag":456,"props":954,"children":955},{"style":463},[956],{"type":42,"value":957},"name",{"type":36,"tag":456,"props":959,"children":960},{"style":480},[961],{"type":42,"value":493},{"type":36,"tag":456,"props":963,"children":964},{"style":480},[965],{"type":42,"value":715},{"type":36,"tag":456,"props":967,"children":968},{"style":480},[969],{"type":42,"value":483},{"type":36,"tag":456,"props":971,"children":972},{"style":469},[973],{"type":42,"value":974},"Support Team",{"type":36,"tag":456,"props":976,"children":977},{"style":480},[978],{"type":42,"value":820},{"type":36,"tag":456,"props":980,"children":981},{"class":458,"line":556},[982],{"type":36,"tag":456,"props":983,"children":984},{"style":480},[985],{"type":42,"value":986},"  },\n",{"type":36,"tag":456,"props":988,"children":989},{"class":458,"line":565},[990,994,998,1002,1006],{"type":36,"tag":456,"props":991,"children":992},{"style":480},[993],{"type":42,"value":756},{"type":36,"tag":456,"props":995,"children":996},{"style":759},[997],{"type":42,"value":860},{"type":36,"tag":456,"props":999,"children":1000},{"style":480},[1001],{"type":42,"value":493},{"type":36,"tag":456,"props":1003,"children":1004},{"style":480},[1005],{"type":42,"value":715},{"type":36,"tag":456,"props":1007,"children":1008},{"style":480},[1009],{"type":42,"value":1010}," [\n",{"type":36,"tag":456,"props":1012,"children":1013},{"class":458,"line":24},[1014],{"type":36,"tag":456,"props":1015,"children":1016},{"style":480},[1017],{"type":42,"value":1018},"    {\n",{"type":36,"tag":456,"props":1020,"children":1021},{"class":458,"line":582},[1022,1027,1031,1035,1039,1043,1048,1052],{"type":36,"tag":456,"props":1023,"children":1024},{"style":480},[1025],{"type":42,"value":1026},"      \"",{"type":36,"tag":456,"props":1028,"children":1029},{"style":463},[1030],{"type":42,"value":920},{"type":36,"tag":456,"props":1032,"children":1033},{"style":480},[1034],{"type":42,"value":493},{"type":36,"tag":456,"props":1036,"children":1037},{"style":480},[1038],{"type":42,"value":715},{"type":36,"tag":456,"props":1040,"children":1041},{"style":480},[1042],{"type":42,"value":483},{"type":36,"tag":456,"props":1044,"children":1045},{"style":469},[1046],{"type":42,"value":1047},"john.doe@example.com",{"type":36,"tag":456,"props":1049,"children":1050},{"style":480},[1051],{"type":42,"value":493},{"type":36,"tag":456,"props":1053,"children":1054},{"style":480},[1055],{"type":42,"value":787},{"type":36,"tag":456,"props":1057,"children":1058},{"class":458,"line":591},[1059,1063,1067,1071,1075,1079,1084],{"type":36,"tag":456,"props":1060,"children":1061},{"style":480},[1062],{"type":42,"value":1026},{"type":36,"tag":456,"props":1064,"children":1065},{"style":463},[1066],{"type":42,"value":957},{"type":36,"tag":456,"props":1068,"children":1069},{"style":480},[1070],{"type":42,"value":493},{"type":36,"tag":456,"props":1072,"children":1073},{"style":480},[1074],{"type":42,"value":715},{"type":36,"tag":456,"props":1076,"children":1077},{"style":480},[1078],{"type":42,"value":483},{"type":36,"tag":456,"props":1080,"children":1081},{"style":469},[1082],{"type":42,"value":1083},"John Doe",{"type":36,"tag":456,"props":1085,"children":1086},{"style":480},[1087],{"type":42,"value":820},{"type":36,"tag":456,"props":1089,"children":1090},{"class":458,"line":600},[1091],{"type":36,"tag":456,"props":1092,"children":1093},{"style":480},[1094],{"type":42,"value":579},{"type":36,"tag":456,"props":1096,"children":1097},{"class":458,"line":609},[1098],{"type":36,"tag":456,"props":1099,"children":1100},{"style":480},[1101],{"type":42,"value":1018},{"type":36,"tag":456,"props":1103,"children":1104},{"class":458,"line":618},[1105,1109,1113,1117,1121,1125,1130,1134],{"type":36,"tag":456,"props":1106,"children":1107},{"style":480},[1108],{"type":42,"value":1026},{"type":36,"tag":456,"props":1110,"children":1111},{"style":463},[1112],{"type":42,"value":920},{"type":36,"tag":456,"props":1114,"children":1115},{"style":480},[1116],{"type":42,"value":493},{"type":36,"tag":456,"props":1118,"children":1119},{"style":480},[1120],{"type":42,"value":715},{"type":36,"tag":456,"props":1122,"children":1123},{"style":480},[1124],{"type":42,"value":483},{"type":36,"tag":456,"props":1126,"children":1127},{"style":469},[1128],{"type":42,"value":1129},"jane.smith@example.com",{"type":36,"tag":456,"props":1131,"children":1132},{"style":480},[1133],{"type":42,"value":493},{"type":36,"tag":456,"props":1135,"children":1136},{"style":480},[1137],{"type":42,"value":787},{"type":36,"tag":456,"props":1139,"children":1140},{"class":458,"line":627},[1141,1145,1149,1153,1157,1161,1166],{"type":36,"tag":456,"props":1142,"children":1143},{"style":480},[1144],{"type":42,"value":1026},{"type":36,"tag":456,"props":1146,"children":1147},{"style":463},[1148],{"type":42,"value":957},{"type":36,"tag":456,"props":1150,"children":1151},{"style":480},[1152],{"type":42,"value":493},{"type":36,"tag":456,"props":1154,"children":1155},{"style":480},[1156],{"type":42,"value":715},{"type":36,"tag":456,"props":1158,"children":1159},{"style":480},[1160],{"type":42,"value":483},{"type":36,"tag":456,"props":1162,"children":1163},{"style":469},[1164],{"type":42,"value":1165},"Jane Smith",{"type":36,"tag":456,"props":1167,"children":1168},{"style":480},[1169],{"type":42,"value":820},{"type":36,"tag":456,"props":1171,"children":1172},{"class":458,"line":636},[1173],{"type":36,"tag":456,"props":1174,"children":1175},{"style":480},[1176],{"type":42,"value":678},{"type":36,"tag":456,"props":1178,"children":1179},{"class":458,"line":645},[1180],{"type":36,"tag":456,"props":1181,"children":1182},{"style":480},[1183],{"type":42,"value":1184},"  ],\n",{"type":36,"tag":456,"props":1186,"children":1187},{"class":458,"line":654},[1188,1192,1197,1201,1205],{"type":36,"tag":456,"props":1189,"children":1190},{"style":480},[1191],{"type":42,"value":756},{"type":36,"tag":456,"props":1193,"children":1194},{"style":759},[1195],{"type":42,"value":1196},"content",{"type":36,"tag":456,"props":1198,"children":1199},{"style":480},[1200],{"type":42,"value":493},{"type":36,"tag":456,"props":1202,"children":1203},{"style":480},[1204],{"type":42,"value":715},{"type":36,"tag":456,"props":1206,"children":1207},{"style":480},[1208],{"type":42,"value":907},{"type":36,"tag":456,"props":1210,"children":1211},{"class":458,"line":663},[1212,1216,1221,1225,1229,1233,1238,1242],{"type":36,"tag":456,"props":1213,"children":1214},{"style":480},[1215],{"type":42,"value":915},{"type":36,"tag":456,"props":1217,"children":1218},{"style":463},[1219],{"type":42,"value":1220},"subject",{"type":36,"tag":456,"props":1222,"children":1223},{"style":480},[1224],{"type":42,"value":493},{"type":36,"tag":456,"props":1226,"children":1227},{"style":480},[1228],{"type":42,"value":715},{"type":36,"tag":456,"props":1230,"children":1231},{"style":480},[1232],{"type":42,"value":483},{"type":36,"tag":456,"props":1234,"children":1235},{"style":469},[1236],{"type":42,"value":1237},"Your subject line",{"type":36,"tag":456,"props":1239,"children":1240},{"style":480},[1241],{"type":42,"value":493},{"type":36,"tag":456,"props":1243,"children":1244},{"style":480},[1245],{"type":42,"value":787},{"type":36,"tag":456,"props":1247,"children":1248},{"class":458,"line":672},[1249,1253,1258,1262,1266,1270,1275,1279],{"type":36,"tag":456,"props":1250,"children":1251},{"style":480},[1252],{"type":42,"value":915},{"type":36,"tag":456,"props":1254,"children":1255},{"style":463},[1256],{"type":42,"value":1257},"html",{"type":36,"tag":456,"props":1259,"children":1260},{"style":480},[1261],{"type":42,"value":493},{"type":36,"tag":456,"props":1263,"children":1264},{"style":480},[1265],{"type":42,"value":715},{"type":36,"tag":456,"props":1267,"children":1268},{"style":480},[1269],{"type":42,"value":483},{"type":36,"tag":456,"props":1271,"children":1272},{"style":469},[1273],{"type":42,"value":1274},"\u003Cp>Your message content in HTML format.\u003C\u002Fp>",{"type":36,"tag":456,"props":1276,"children":1277},{"style":480},[1278],{"type":42,"value":493},{"type":36,"tag":456,"props":1280,"children":1281},{"style":480},[1282],{"type":42,"value":787},{"type":36,"tag":456,"props":1284,"children":1285},{"class":458,"line":681},[1286,1290,1294,1298,1302,1306,1311],{"type":36,"tag":456,"props":1287,"children":1288},{"style":480},[1289],{"type":42,"value":915},{"type":36,"tag":456,"props":1291,"children":1292},{"style":463},[1293],{"type":42,"value":42},{"type":36,"tag":456,"props":1295,"children":1296},{"style":480},[1297],{"type":42,"value":493},{"type":36,"tag":456,"props":1299,"children":1300},{"style":480},[1301],{"type":42,"value":715},{"type":36,"tag":456,"props":1303,"children":1304},{"style":480},[1305],{"type":42,"value":483},{"type":36,"tag":456,"props":1307,"children":1308},{"style":469},[1309],{"type":42,"value":1310},"Your message content in plain text.",{"type":36,"tag":456,"props":1312,"children":1313},{"style":480},[1314],{"type":42,"value":820},{"type":36,"tag":456,"props":1316,"children":1317},{"class":458,"line":699},[1318],{"type":36,"tag":456,"props":1319,"children":1320},{"style":480},[1321],{"type":42,"value":1322},"  }\n",{"type":36,"tag":456,"props":1324,"children":1326},{"class":458,"line":1325},21,[1327],{"type":36,"tag":456,"props":1328,"children":1329},{"style":480},[1330],{"type":42,"value":828},{"type":36,"tag":302,"props":1332,"children":1333},{},[],{"type":36,"tag":37,"props":1335,"children":1337},{"id":1336},"liquid-personalization",[1338],{"type":42,"value":1339},"Liquid Personalization",{"type":36,"tag":49,"props":1341,"children":1342},{},[1343,1345,1351,1353,1359,1361,1367,1369,1375,1377,1383,1385,1390],{"type":42,"value":1344},"Use Liquid templating in the ",{"type":36,"tag":71,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":42,"value":1350},"content.subject",{"type":42,"value":1352},", ",{"type":36,"tag":71,"props":1354,"children":1356},{"className":1355},[],[1357],{"type":42,"value":1358},"content.html",{"type":42,"value":1360},", and ",{"type":36,"tag":71,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":42,"value":1366},"content.text",{"type":42,"value":1368}," fields. For each variable referenced (e.g. ",{"type":36,"tag":71,"props":1370,"children":1372},{"className":1371},[],[1373],{"type":42,"value":1374},"{{firstName}}",{"type":42,"value":1376},"), provide a matching key in the ",{"type":36,"tag":71,"props":1378,"children":1380},{"className":1379},[],[1381],{"type":42,"value":1382},"variables",{"type":42,"value":1384}," object for every recipient in the ",{"type":36,"tag":71,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":42,"value":860},{"type":42,"value":1391}," array.",{"type":36,"tag":445,"props":1393,"children":1395},{"className":735,"code":1394,"language":737,"meta":450,"style":450},"{\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",[1396],{"type":36,"tag":71,"props":1397,"children":1398},{"__ignoreMap":450},[1399,1406,1429,1465,1496,1503,1526,1533,1569,1605,1698,1705,1712,1748,1784,1872,1879,1886,1909,1945,1981,2013,2021],{"type":36,"tag":456,"props":1400,"children":1401},{"class":458,"line":459},[1402],{"type":36,"tag":456,"props":1403,"children":1404},{"style":480},[1405],{"type":42,"value":544},{"type":36,"tag":456,"props":1407,"children":1408},{"class":458,"line":502},[1409,1413,1417,1421,1425],{"type":36,"tag":456,"props":1410,"children":1411},{"style":480},[1412],{"type":42,"value":756},{"type":36,"tag":456,"props":1414,"children":1415},{"style":759},[1416],{"type":42,"value":346},{"type":36,"tag":456,"props":1418,"children":1419},{"style":480},[1420],{"type":42,"value":493},{"type":36,"tag":456,"props":1422,"children":1423},{"style":480},[1424],{"type":42,"value":715},{"type":36,"tag":456,"props":1426,"children":1427},{"style":480},[1428],{"type":42,"value":907},{"type":36,"tag":456,"props":1430,"children":1431},{"class":458,"line":528},[1432,1436,1440,1444,1448,1452,1457,1461],{"type":36,"tag":456,"props":1433,"children":1434},{"style":480},[1435],{"type":42,"value":915},{"type":36,"tag":456,"props":1437,"children":1438},{"style":463},[1439],{"type":42,"value":920},{"type":36,"tag":456,"props":1441,"children":1442},{"style":480},[1443],{"type":42,"value":493},{"type":36,"tag":456,"props":1445,"children":1446},{"style":480},[1447],{"type":42,"value":715},{"type":36,"tag":456,"props":1449,"children":1450},{"style":480},[1451],{"type":42,"value":483},{"type":36,"tag":456,"props":1453,"children":1454},{"style":469},[1455],{"type":42,"value":1456},"noreply@example.com",{"type":36,"tag":456,"props":1458,"children":1459},{"style":480},[1460],{"type":42,"value":493},{"type":36,"tag":456,"props":1462,"children":1463},{"style":480},[1464],{"type":42,"value":787},{"type":36,"tag":456,"props":1466,"children":1467},{"class":458,"line":547},[1468,1472,1476,1480,1484,1488,1492],{"type":36,"tag":456,"props":1469,"children":1470},{"style":480},[1471],{"type":42,"value":915},{"type":36,"tag":456,"props":1473,"children":1474},{"style":463},[1475],{"type":42,"value":957},{"type":36,"tag":456,"props":1477,"children":1478},{"style":480},[1479],{"type":42,"value":493},{"type":36,"tag":456,"props":1481,"children":1482},{"style":480},[1483],{"type":42,"value":715},{"type":36,"tag":456,"props":1485,"children":1486},{"style":480},[1487],{"type":42,"value":483},{"type":36,"tag":456,"props":1489,"children":1490},{"style":469},[1491],{"type":42,"value":974},{"type":36,"tag":456,"props":1493,"children":1494},{"style":480},[1495],{"type":42,"value":820},{"type":36,"tag":456,"props":1497,"children":1498},{"class":458,"line":556},[1499],{"type":36,"tag":456,"props":1500,"children":1501},{"style":480},[1502],{"type":42,"value":986},{"type":36,"tag":456,"props":1504,"children":1505},{"class":458,"line":565},[1506,1510,1514,1518,1522],{"type":36,"tag":456,"props":1507,"children":1508},{"style":480},[1509],{"type":42,"value":756},{"type":36,"tag":456,"props":1511,"children":1512},{"style":759},[1513],{"type":42,"value":860},{"type":36,"tag":456,"props":1515,"children":1516},{"style":480},[1517],{"type":42,"value":493},{"type":36,"tag":456,"props":1519,"children":1520},{"style":480},[1521],{"type":42,"value":715},{"type":36,"tag":456,"props":1523,"children":1524},{"style":480},[1525],{"type":42,"value":1010},{"type":36,"tag":456,"props":1527,"children":1528},{"class":458,"line":24},[1529],{"type":36,"tag":456,"props":1530,"children":1531},{"style":480},[1532],{"type":42,"value":1018},{"type":36,"tag":456,"props":1534,"children":1535},{"class":458,"line":582},[1536,1540,1544,1548,1552,1556,1561,1565],{"type":36,"tag":456,"props":1537,"children":1538},{"style":480},[1539],{"type":42,"value":1026},{"type":36,"tag":456,"props":1541,"children":1542},{"style":463},[1543],{"type":42,"value":920},{"type":36,"tag":456,"props":1545,"children":1546},{"style":480},[1547],{"type":42,"value":493},{"type":36,"tag":456,"props":1549,"children":1550},{"style":480},[1551],{"type":42,"value":715},{"type":36,"tag":456,"props":1553,"children":1554},{"style":480},[1555],{"type":42,"value":483},{"type":36,"tag":456,"props":1557,"children":1558},{"style":469},[1559],{"type":42,"value":1560},"alice@example.com",{"type":36,"tag":456,"props":1562,"children":1563},{"style":480},[1564],{"type":42,"value":493},{"type":36,"tag":456,"props":1566,"children":1567},{"style":480},[1568],{"type":42,"value":787},{"type":36,"tag":456,"props":1570,"children":1571},{"class":458,"line":591},[1572,1576,1580,1584,1588,1592,1597,1601],{"type":36,"tag":456,"props":1573,"children":1574},{"style":480},[1575],{"type":42,"value":1026},{"type":36,"tag":456,"props":1577,"children":1578},{"style":463},[1579],{"type":42,"value":957},{"type":36,"tag":456,"props":1581,"children":1582},{"style":480},[1583],{"type":42,"value":493},{"type":36,"tag":456,"props":1585,"children":1586},{"style":480},[1587],{"type":42,"value":715},{"type":36,"tag":456,"props":1589,"children":1590},{"style":480},[1591],{"type":42,"value":483},{"type":36,"tag":456,"props":1593,"children":1594},{"style":469},[1595],{"type":42,"value":1596},"Alice",{"type":36,"tag":456,"props":1598,"children":1599},{"style":480},[1600],{"type":42,"value":493},{"type":36,"tag":456,"props":1602,"children":1603},{"style":480},[1604],{"type":42,"value":787},{"type":36,"tag":456,"props":1606,"children":1607},{"class":458,"line":600},[1608,1612,1616,1620,1624,1629,1633,1639,1643,1647,1651,1655,1659,1664,1668,1673,1677,1681,1685,1690,1694],{"type":36,"tag":456,"props":1609,"children":1610},{"style":480},[1611],{"type":42,"value":1026},{"type":36,"tag":456,"props":1613,"children":1614},{"style":463},[1615],{"type":42,"value":1382},{"type":36,"tag":456,"props":1617,"children":1618},{"style":480},[1619],{"type":42,"value":493},{"type":36,"tag":456,"props":1621,"children":1622},{"style":480},[1623],{"type":42,"value":715},{"type":36,"tag":456,"props":1625,"children":1626},{"style":480},[1627],{"type":42,"value":1628}," {",{"type":36,"tag":456,"props":1630,"children":1631},{"style":480},[1632],{"type":42,"value":493},{"type":36,"tag":456,"props":1634,"children":1636},{"style":1635},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1637],{"type":42,"value":1638},"firstName",{"type":36,"tag":456,"props":1640,"children":1641},{"style":480},[1642],{"type":42,"value":493},{"type":36,"tag":456,"props":1644,"children":1645},{"style":480},[1646],{"type":42,"value":715},{"type":36,"tag":456,"props":1648,"children":1649},{"style":480},[1650],{"type":42,"value":483},{"type":36,"tag":456,"props":1652,"children":1653},{"style":469},[1654],{"type":42,"value":1596},{"type":36,"tag":456,"props":1656,"children":1657},{"style":480},[1658],{"type":42,"value":493},{"type":36,"tag":456,"props":1660,"children":1661},{"style":480},[1662],{"type":42,"value":1663},",",{"type":36,"tag":456,"props":1665,"children":1666},{"style":480},[1667],{"type":42,"value":483},{"type":36,"tag":456,"props":1669,"children":1670},{"style":1635},[1671],{"type":42,"value":1672},"orderId",{"type":36,"tag":456,"props":1674,"children":1675},{"style":480},[1676],{"type":42,"value":493},{"type":36,"tag":456,"props":1678,"children":1679},{"style":480},[1680],{"type":42,"value":715},{"type":36,"tag":456,"props":1682,"children":1683},{"style":480},[1684],{"type":42,"value":483},{"type":36,"tag":456,"props":1686,"children":1687},{"style":469},[1688],{"type":42,"value":1689},"123",{"type":36,"tag":456,"props":1691,"children":1692},{"style":480},[1693],{"type":42,"value":493},{"type":36,"tag":456,"props":1695,"children":1696},{"style":480},[1697],{"type":42,"value":828},{"type":36,"tag":456,"props":1699,"children":1700},{"class":458,"line":609},[1701],{"type":36,"tag":456,"props":1702,"children":1703},{"style":480},[1704],{"type":42,"value":579},{"type":36,"tag":456,"props":1706,"children":1707},{"class":458,"line":618},[1708],{"type":36,"tag":456,"props":1709,"children":1710},{"style":480},[1711],{"type":42,"value":1018},{"type":36,"tag":456,"props":1713,"children":1714},{"class":458,"line":627},[1715,1719,1723,1727,1731,1735,1740,1744],{"type":36,"tag":456,"props":1716,"children":1717},{"style":480},[1718],{"type":42,"value":1026},{"type":36,"tag":456,"props":1720,"children":1721},{"style":463},[1722],{"type":42,"value":920},{"type":36,"tag":456,"props":1724,"children":1725},{"style":480},[1726],{"type":42,"value":493},{"type":36,"tag":456,"props":1728,"children":1729},{"style":480},[1730],{"type":42,"value":715},{"type":36,"tag":456,"props":1732,"children":1733},{"style":480},[1734],{"type":42,"value":483},{"type":36,"tag":456,"props":1736,"children":1737},{"style":469},[1738],{"type":42,"value":1739},"bob@example.com",{"type":36,"tag":456,"props":1741,"children":1742},{"style":480},[1743],{"type":42,"value":493},{"type":36,"tag":456,"props":1745,"children":1746},{"style":480},[1747],{"type":42,"value":787},{"type":36,"tag":456,"props":1749,"children":1750},{"class":458,"line":636},[1751,1755,1759,1763,1767,1771,1776,1780],{"type":36,"tag":456,"props":1752,"children":1753},{"style":480},[1754],{"type":42,"value":1026},{"type":36,"tag":456,"props":1756,"children":1757},{"style":463},[1758],{"type":42,"value":957},{"type":36,"tag":456,"props":1760,"children":1761},{"style":480},[1762],{"type":42,"value":493},{"type":36,"tag":456,"props":1764,"children":1765},{"style":480},[1766],{"type":42,"value":715},{"type":36,"tag":456,"props":1768,"children":1769},{"style":480},[1770],{"type":42,"value":483},{"type":36,"tag":456,"props":1772,"children":1773},{"style":469},[1774],{"type":42,"value":1775},"Bob",{"type":36,"tag":456,"props":1777,"children":1778},{"style":480},[1779],{"type":42,"value":493},{"type":36,"tag":456,"props":1781,"children":1782},{"style":480},[1783],{"type":42,"value":787},{"type":36,"tag":456,"props":1785,"children":1786},{"class":458,"line":645},[1787,1791,1795,1799,1803,1807,1811,1815,1819,1823,1827,1831,1835,1839,1843,1847,1851,1855,1859,1864,1868],{"type":36,"tag":456,"props":1788,"children":1789},{"style":480},[1790],{"type":42,"value":1026},{"type":36,"tag":456,"props":1792,"children":1793},{"style":463},[1794],{"type":42,"value":1382},{"type":36,"tag":456,"props":1796,"children":1797},{"style":480},[1798],{"type":42,"value":493},{"type":36,"tag":456,"props":1800,"children":1801},{"style":480},[1802],{"type":42,"value":715},{"type":36,"tag":456,"props":1804,"children":1805},{"style":480},[1806],{"type":42,"value":1628},{"type":36,"tag":456,"props":1808,"children":1809},{"style":480},[1810],{"type":42,"value":493},{"type":36,"tag":456,"props":1812,"children":1813},{"style":1635},[1814],{"type":42,"value":1638},{"type":36,"tag":456,"props":1816,"children":1817},{"style":480},[1818],{"type":42,"value":493},{"type":36,"tag":456,"props":1820,"children":1821},{"style":480},[1822],{"type":42,"value":715},{"type":36,"tag":456,"props":1824,"children":1825},{"style":480},[1826],{"type":42,"value":483},{"type":36,"tag":456,"props":1828,"children":1829},{"style":469},[1830],{"type":42,"value":1775},{"type":36,"tag":456,"props":1832,"children":1833},{"style":480},[1834],{"type":42,"value":493},{"type":36,"tag":456,"props":1836,"children":1837},{"style":480},[1838],{"type":42,"value":1663},{"type":36,"tag":456,"props":1840,"children":1841},{"style":480},[1842],{"type":42,"value":483},{"type":36,"tag":456,"props":1844,"children":1845},{"style":1635},[1846],{"type":42,"value":1672},{"type":36,"tag":456,"props":1848,"children":1849},{"style":480},[1850],{"type":42,"value":493},{"type":36,"tag":456,"props":1852,"children":1853},{"style":480},[1854],{"type":42,"value":715},{"type":36,"tag":456,"props":1856,"children":1857},{"style":480},[1858],{"type":42,"value":483},{"type":36,"tag":456,"props":1860,"children":1861},{"style":469},[1862],{"type":42,"value":1863},"456",{"type":36,"tag":456,"props":1865,"children":1866},{"style":480},[1867],{"type":42,"value":493},{"type":36,"tag":456,"props":1869,"children":1870},{"style":480},[1871],{"type":42,"value":828},{"type":36,"tag":456,"props":1873,"children":1874},{"class":458,"line":654},[1875],{"type":36,"tag":456,"props":1876,"children":1877},{"style":480},[1878],{"type":42,"value":678},{"type":36,"tag":456,"props":1880,"children":1881},{"class":458,"line":663},[1882],{"type":36,"tag":456,"props":1883,"children":1884},{"style":480},[1885],{"type":42,"value":1184},{"type":36,"tag":456,"props":1887,"children":1888},{"class":458,"line":672},[1889,1893,1897,1901,1905],{"type":36,"tag":456,"props":1890,"children":1891},{"style":480},[1892],{"type":42,"value":756},{"type":36,"tag":456,"props":1894,"children":1895},{"style":759},[1896],{"type":42,"value":1196},{"type":36,"tag":456,"props":1898,"children":1899},{"style":480},[1900],{"type":42,"value":493},{"type":36,"tag":456,"props":1902,"children":1903},{"style":480},[1904],{"type":42,"value":715},{"type":36,"tag":456,"props":1906,"children":1907},{"style":480},[1908],{"type":42,"value":907},{"type":36,"tag":456,"props":1910,"children":1911},{"class":458,"line":681},[1912,1916,1920,1924,1928,1932,1937,1941],{"type":36,"tag":456,"props":1913,"children":1914},{"style":480},[1915],{"type":42,"value":915},{"type":36,"tag":456,"props":1917,"children":1918},{"style":463},[1919],{"type":42,"value":1220},{"type":36,"tag":456,"props":1921,"children":1922},{"style":480},[1923],{"type":42,"value":493},{"type":36,"tag":456,"props":1925,"children":1926},{"style":480},[1927],{"type":42,"value":715},{"type":36,"tag":456,"props":1929,"children":1930},{"style":480},[1931],{"type":42,"value":483},{"type":36,"tag":456,"props":1933,"children":1934},{"style":469},[1935],{"type":42,"value":1936},"Hi {{firstName}}, your order update",{"type":36,"tag":456,"props":1938,"children":1939},{"style":480},[1940],{"type":42,"value":493},{"type":36,"tag":456,"props":1942,"children":1943},{"style":480},[1944],{"type":42,"value":787},{"type":36,"tag":456,"props":1946,"children":1947},{"class":458,"line":699},[1948,1952,1956,1960,1964,1968,1973,1977],{"type":36,"tag":456,"props":1949,"children":1950},{"style":480},[1951],{"type":42,"value":915},{"type":36,"tag":456,"props":1953,"children":1954},{"style":463},[1955],{"type":42,"value":1257},{"type":36,"tag":456,"props":1957,"children":1958},{"style":480},[1959],{"type":42,"value":493},{"type":36,"tag":456,"props":1961,"children":1962},{"style":480},[1963],{"type":42,"value":715},{"type":36,"tag":456,"props":1965,"children":1966},{"style":480},[1967],{"type":42,"value":483},{"type":36,"tag":456,"props":1969,"children":1970},{"style":469},[1971],{"type":42,"value":1972},"\u003Cp>Hi {{firstName}}, order #{{orderId}} has shipped.\u003C\u002Fp>",{"type":36,"tag":456,"props":1974,"children":1975},{"style":480},[1976],{"type":42,"value":493},{"type":36,"tag":456,"props":1978,"children":1979},{"style":480},[1980],{"type":42,"value":787},{"type":36,"tag":456,"props":1982,"children":1983},{"class":458,"line":1325},[1984,1988,1992,1996,2000,2004,2009],{"type":36,"tag":456,"props":1985,"children":1986},{"style":480},[1987],{"type":42,"value":915},{"type":36,"tag":456,"props":1989,"children":1990},{"style":463},[1991],{"type":42,"value":42},{"type":36,"tag":456,"props":1993,"children":1994},{"style":480},[1995],{"type":42,"value":493},{"type":36,"tag":456,"props":1997,"children":1998},{"style":480},[1999],{"type":42,"value":715},{"type":36,"tag":456,"props":2001,"children":2002},{"style":480},[2003],{"type":42,"value":483},{"type":36,"tag":456,"props":2005,"children":2006},{"style":469},[2007],{"type":42,"value":2008},"Hi {{firstName}}, order #{{orderId}} has shipped.",{"type":36,"tag":456,"props":2010,"children":2011},{"style":480},[2012],{"type":42,"value":820},{"type":36,"tag":456,"props":2014,"children":2016},{"class":458,"line":2015},22,[2017],{"type":36,"tag":456,"props":2018,"children":2019},{"style":480},[2020],{"type":42,"value":1322},{"type":36,"tag":456,"props":2022,"children":2024},{"class":458,"line":2023},23,[2025],{"type":36,"tag":456,"props":2026,"children":2027},{"style":480},[2028],{"type":42,"value":828},{"type":36,"tag":49,"props":2030,"children":2031},{},[2032],{"type":42,"value":2033},"Ensure every recipient has all referenced variables defined.",{"type":36,"tag":302,"props":2035,"children":2036},{},[],{"type":36,"tag":37,"props":2038,"children":2040},{"id":2039},"operation-tracking",[2041],{"type":42,"value":2042},"Operation Tracking",{"type":36,"tag":49,"props":2044,"children":2045},{},[2046],{"type":42,"value":2047},"After submitting a send, use the Operation resource to monitor batch status.",{"type":36,"tag":2049,"props":2050,"children":2051},"ol",{},[2052,2077,2097],{"type":36,"tag":316,"props":2053,"children":2054},{},[2055,2057,2063,2065,2070,2072],{"type":42,"value":2056},"Submit email via ",{"type":36,"tag":71,"props":2058,"children":2060},{"className":2059},[],[2061],{"type":42,"value":2062},"POST \u002Fv1\u002Femails",{"type":42,"value":2064}," — response includes ",{"type":36,"tag":71,"props":2066,"children":2068},{"className":2067},[],[2069],{"type":42,"value":441},{"type":42,"value":2071}," and ",{"type":36,"tag":71,"props":2073,"children":2075},{"className":2074},[],[2076],{"type":42,"value":273},{"type":36,"tag":316,"props":2078,"children":2079},{},[2080,2082,2088,2090,2095],{"type":42,"value":2081},"Poll status via ",{"type":36,"tag":71,"props":2083,"children":2085},{"className":2084},[],[2086],{"type":42,"value":2087},"GET",{"type":42,"value":2089}," to the ",{"type":36,"tag":71,"props":2091,"children":2093},{"className":2092},[],[2094],{"type":42,"value":273},{"type":42,"value":2096}," URI",{"type":36,"tag":316,"props":2098,"children":2099},{},[2100],{"type":42,"value":2101},"The operation tracks progress for the entire batch",{"type":36,"tag":49,"props":2103,"children":2104},{},[2105],{"type":42,"value":2106},"This is especially important for large recipient lists where processing is not instantaneous.",{"type":36,"tag":302,"props":2108,"children":2109},{},[],{"type":36,"tag":37,"props":2111,"children":2113},{"id":2112},"error-codes",[2114],{"type":42,"value":2115},"Error Codes",{"type":36,"tag":88,"props":2117,"children":2118},{},[2119,2140],{"type":36,"tag":92,"props":2120,"children":2121},{},[2122],{"type":36,"tag":96,"props":2123,"children":2124},{},[2125,2130,2135],{"type":36,"tag":100,"props":2126,"children":2127},{},[2128],{"type":42,"value":2129},"Status Code",{"type":36,"tag":100,"props":2131,"children":2132},{},[2133],{"type":42,"value":2134},"Description",{"type":36,"tag":100,"props":2136,"children":2137},{},[2138],{"type":42,"value":2139},"Action",{"type":36,"tag":114,"props":2141,"children":2142},{},[2143,2171,2192,2213,2234,2255],{"type":36,"tag":96,"props":2144,"children":2145},{},[2146,2154,2159],{"type":36,"tag":121,"props":2147,"children":2148},{},[2149],{"type":36,"tag":53,"props":2150,"children":2151},{},[2152],{"type":42,"value":2153},"202",{"type":36,"tag":121,"props":2155,"children":2156},{},[2157],{"type":42,"value":2158},"Accepted",{"type":36,"tag":121,"props":2160,"children":2161},{},[2162,2164,2169],{"type":42,"value":2163},"Request accepted, Operation created. Poll ",{"type":36,"tag":71,"props":2165,"children":2167},{"className":2166},[],[2168],{"type":42,"value":273},{"type":42,"value":2170}," for status.",{"type":36,"tag":96,"props":2172,"children":2173},{},[2174,2182,2187],{"type":36,"tag":121,"props":2175,"children":2176},{},[2177],{"type":36,"tag":53,"props":2178,"children":2179},{},[2180],{"type":42,"value":2181},"400",{"type":36,"tag":121,"props":2183,"children":2184},{},[2185],{"type":42,"value":2186},"Bad Request",{"type":36,"tag":121,"props":2188,"children":2189},{},[2190],{"type":42,"value":2191},"Malformed or ambiguous request content. Check JSON payload.",{"type":36,"tag":96,"props":2193,"children":2194},{},[2195,2203,2208],{"type":36,"tag":121,"props":2196,"children":2197},{},[2198],{"type":36,"tag":53,"props":2199,"children":2200},{},[2201],{"type":42,"value":2202},"401",{"type":36,"tag":121,"props":2204,"children":2205},{},[2206],{"type":42,"value":2207},"Unauthorized",{"type":36,"tag":121,"props":2209,"children":2210},{},[2211],{"type":42,"value":2212},"Verify Account SID and Auth Token \u002F API Key are correct.",{"type":36,"tag":96,"props":2214,"children":2215},{},[2216,2224,2229],{"type":36,"tag":121,"props":2217,"children":2218},{},[2219],{"type":36,"tag":53,"props":2220,"children":2221},{},[2222],{"type":42,"value":2223},"429",{"type":36,"tag":121,"props":2225,"children":2226},{},[2227],{"type":42,"value":2228},"Too Many Requests",{"type":36,"tag":121,"props":2230,"children":2231},{},[2232],{"type":42,"value":2233},"Rate limited. Back off and retry.",{"type":36,"tag":96,"props":2235,"children":2236},{},[2237,2245,2250],{"type":36,"tag":121,"props":2238,"children":2239},{},[2240],{"type":36,"tag":53,"props":2241,"children":2242},{},[2243],{"type":42,"value":2244},"500",{"type":36,"tag":121,"props":2246,"children":2247},{},[2248],{"type":42,"value":2249},"Internal Server Error",{"type":36,"tag":121,"props":2251,"children":2252},{},[2253],{"type":42,"value":2254},"Twilio server-side issue. Retry with backoff.",{"type":36,"tag":96,"props":2256,"children":2257},{},[2258,2266,2271],{"type":36,"tag":121,"props":2259,"children":2260},{},[2261],{"type":36,"tag":53,"props":2262,"children":2263},{},[2264],{"type":42,"value":2265},"503",{"type":36,"tag":121,"props":2267,"children":2268},{},[2269],{"type":42,"value":2270},"Service Unavailable",{"type":36,"tag":121,"props":2272,"children":2273},{},[2274],{"type":42,"value":2275},"Temporarily unavailable. Retry after a short delay.",{"type":36,"tag":49,"props":2277,"children":2278},{},[2279],{"type":42,"value":2280},"Validation errors return as many issues as possible in a single response to help debug quickly.",{"type":36,"tag":302,"props":2282,"children":2283},{},[],{"type":36,"tag":37,"props":2285,"children":2287},{"id":2286},"cannot",[2288],{"type":42,"value":2289},"CANNOT",{"type":36,"tag":312,"props":2291,"children":2292},{},[2293,2317,2327,2337,2354,2380,2397],{"type":36,"tag":316,"props":2294,"children":2295},{},[2296,2301,2303,2308,2310,2315],{"type":36,"tag":53,"props":2297,"children":2298},{},[2299],{"type":42,"value":2300},"Cannot use SendGrid API keys",{"type":42,"value":2302}," — Twilio Email uses Twilio Account SID + Auth Token or API Key SID + Secret. ",{"type":36,"tag":71,"props":2304,"children":2306},{"className":2305},[],[2307],{"type":42,"value":76},{"type":42,"value":2309},"-prefix keys do not work. Use ",{"type":36,"tag":71,"props":2311,"children":2313},{"className":2312},[],[2314],{"type":42,"value":84},{"type":42,"value":2316}," for SendGrid.",{"type":36,"tag":316,"props":2318,"children":2319},{},[2320,2325],{"type":36,"tag":53,"props":2321,"children":2322},{},[2323],{"type":42,"value":2324},"Cannot send more than 10,000 recipients per request",{"type":42,"value":2326}," — Split into multiple requests for larger lists.",{"type":36,"tag":316,"props":2328,"children":2329},{},[2330,2335],{"type":36,"tag":53,"props":2331,"children":2332},{},[2333],{"type":42,"value":2334},"Cannot exceed 10MB per message",{"type":42,"value":2336}," — Total size including attachments must be under 10MB (smaller than SendGrid's 30MB limit).",{"type":36,"tag":316,"props":2338,"children":2339},{},[2340,2352],{"type":36,"tag":53,"props":2341,"children":2342},{},[2343,2345,2350],{"type":42,"value":2344},"Cannot use Unicode in the ",{"type":36,"tag":71,"props":2346,"children":2348},{"className":2347},[],[2349],{"type":42,"value":346},{"type":42,"value":2351}," field",{"type":42,"value":2353}," — Unicode encoding is not supported for sender addresses.",{"type":36,"tag":316,"props":2355,"children":2356},{},[2357,2362,2364,2370,2372,2378],{"type":36,"tag":53,"props":2358,"children":2359},{},[2360],{"type":42,"value":2361},"Cannot use Handlebars templating",{"type":42,"value":2363}," — Twilio Email uses Liquid, not Handlebars. If you see ",{"type":36,"tag":71,"props":2365,"children":2367},{"className":2366},[],[2368],{"type":42,"value":2369},"{{#if}}",{"type":42,"value":2371}," or ",{"type":36,"tag":71,"props":2373,"children":2375},{"className":2374},[],[2376],{"type":42,"value":2377},"{{#each}}",{"type":42,"value":2379},", that's Handlebars\u002FSendGrid syntax.",{"type":36,"tag":316,"props":2381,"children":2382},{},[2383,2388,2390,2395],{"type":36,"tag":53,"props":2384,"children":2385},{},[2386],{"type":42,"value":2387},"Cannot get synchronous delivery confirmation",{"type":42,"value":2389}," — The API is async. ",{"type":36,"tag":71,"props":2391,"children":2393},{"className":2392},[],[2394],{"type":42,"value":433},{"type":42,"value":2396}," means queued, not delivered. Poll the Operation resource for status.",{"type":36,"tag":316,"props":2398,"children":2399},{},[2400,2405],{"type":36,"tag":53,"props":2401,"children":2402},{},[2403],{"type":42,"value":2404},"Tags total length cannot exceed 10,000 bytes",{"type":42,"value":2406}," — Combined length of all tags on a request is limited.",{"type":36,"tag":302,"props":2408,"children":2409},{},[],{"type":36,"tag":37,"props":2411,"children":2413},{"id":2412},"next-steps",[2414],{"type":42,"value":2415},"Next Steps",{"type":36,"tag":312,"props":2417,"children":2418},{},[2419,2434,2448],{"type":36,"tag":316,"props":2420,"children":2421},{},[2422,2427,2429],{"type":36,"tag":53,"props":2423,"children":2424},{},[2425],{"type":42,"value":2426},"Account setup and credentials:",{"type":42,"value":2428}," ",{"type":36,"tag":71,"props":2430,"children":2432},{"className":2431},[],[2433],{"type":42,"value":326},{"type":36,"tag":316,"props":2435,"children":2436},{},[2437,2442,2443],{"type":36,"tag":53,"props":2438,"children":2439},{},[2440],{"type":42,"value":2441},"SendGrid email (separate product):",{"type":42,"value":2428},{"type":36,"tag":71,"props":2444,"children":2446},{"className":2445},[],[2447],{"type":42,"value":84},{"type":36,"tag":316,"props":2449,"children":2450},{},[2451,2456,2457],{"type":36,"tag":53,"props":2452,"children":2453},{},[2454],{"type":42,"value":2455},"SMS sending:",{"type":42,"value":2428},{"type":36,"tag":71,"props":2458,"children":2460},{"className":2459},[],[2461],{"type":42,"value":2462},"twilio-sms-send-message",{"type":36,"tag":2464,"props":2465,"children":2466},"style",{},[2467],{"type":42,"value":2468},"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":2470,"total":2648},[2471,2484,2504,2515,2527,2542,2559,2575,2591,2604,2618,2636],{"slug":326,"name":326,"fn":2472,"description":2473,"org":2474,"tags":2475,"stars":20,"repoUrl":21,"updatedAt":2483},"configure Twilio accounts and credentials","Create and configure a Twilio account from scratch. Covers free trial signup, trial limitations, getting credentials (Account SID and Auth Token), buying a phone number, verifying recipient numbers for trial use, SDK installation, first API call, subaccount management (creation, inheritance, credential isolation, limits), and enabling specific products (AI Assistants, Conversations, Verify, ConversationRelay, WhatsApp). Use this skill before any other Twilio skill if you do not yet have a Twilio account or need to enable a product. For Organization-level governance (SSO, SCIM, multi-team), see `twilio-organizations-setup`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2476,2477,2480],{"name":13,"slug":14,"type":15},{"name":2478,"slug":2479,"type":15},"Communications","communications",{"name":2481,"slug":2482,"type":15},"SMS","sms","2026-08-01T05:43:28.968968",{"slug":2485,"name":2485,"fn":2486,"description":2487,"org":2488,"tags":2489,"stars":20,"repoUrl":21,"updatedAt":2503},"twilio-agent-augmentation-architect","augment human agents with AI intelligence","Planning skill for augmenting human agents with real-time AI intelligence. Qualifies the developer's use case across coaching, compliance, QA, and routing to recommend the right Conversation Intelligence + Conversation Memory + TaskRouter architecture. Handles both \"I want to add AI coaching to my call center\" and \"configure Conversation Intelligence operators for script adherence.\"\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2490,2493,2496,2499,2502],{"name":2491,"slug":2492,"type":15},"Agents","agents",{"name":2494,"slug":2495,"type":15},"AI","ai",{"name":2497,"slug":2498,"type":15},"Coaching","coaching",{"name":2500,"slug":2501,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:58.250609",{"slug":2505,"name":2505,"fn":2506,"description":2507,"org":2508,"tags":2509,"stars":20,"repoUrl":21,"updatedAt":2514},"twilio-agent-connect","connect AI agents to Twilio channels","Connect third-party AI agents (OpenAI, Bedrock, LangChain, Microsoft Foundry) to Twilio's communication channels using the Twilio Agent Connect SDK. Covers identity resolution, memory and context management via Conversation Memory, conversation orchestration via Conversation Orchestrator, multi-channel handling (Voice, SMS, RCS, WhatsApp, Chat), and AI-to-human escalation. Use this skill when integrating an existing LLM agent with Twilio services.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2510,2511,2512,2513],{"name":2491,"slug":2492,"type":15},{"name":13,"slug":14,"type":15},{"name":2478,"slug":2479,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:06:05.217098",{"slug":2516,"name":2516,"fn":2517,"description":2518,"org":2519,"tags":2520,"stars":20,"repoUrl":21,"updatedAt":2526},"twilio-ai-agent-architect","plan Twilio conversational AI agents","Planning skill for AI-powered conversational agents. Qualifies the developer's use case across outcome sophistication, entry point, and customer profile to recommend the right Twilio Conversations architecture and implementation skills. Handles both high-level requests (\"build me a voice AI assistant\") and specific ones (\"integrate ConversationRelay with my OpenAI backend\").\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2521,2522,2525],{"name":2491,"slug":2492,"type":15},{"name":2523,"slug":2524,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:48.883723",{"slug":2528,"name":2528,"fn":2529,"description":2530,"org":2531,"tags":2532,"stars":20,"repoUrl":21,"updatedAt":2541},"twilio-call-recordings","record and manage Twilio voice calls","Record Twilio voice calls correctly. Covers the critical distinction between Record verb (voicemail) and Dial record (call recording), dual-channel for QA, mid-call pause for PCI, Conference recording, and the ConversationRelay workaround. Use this skill whenever you need to capture call audio for compliance, QA, or analytics.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2533,2536,2539,2540],{"name":2534,"slug":2535,"type":15},"Audio","audio",{"name":2537,"slug":2538,"type":15},"Compliance","compliance",{"name":2500,"slug":2501,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.268412",{"slug":2543,"name":2543,"fn":2544,"description":2545,"org":2546,"tags":2547,"stars":20,"repoUrl":21,"updatedAt":2558},"twilio-cli-reference","manage Twilio resources via CLI","Twilio CLI reference for managing Twilio resources from the terminal. Covers installation, credential profiles, phone number provisioning, sending SMS and email, webhook configuration, local development with a tunneling service, debugging with watch and logs, serverless deployment, and plugin ecosystem. Use when the developer asks to \"just do it\", \"set this up\", \"run a command\", mentions \"CLI\", \"command line\", or \"terminal\", or when an AI agent can execute a task directly instead of writing application code.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2548,2551,2554,2557],{"name":2549,"slug":2550,"type":15},"CLI","cli",{"name":2552,"slug":2553,"type":15},"Local Development","local-development",{"name":2555,"slug":2556,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:54.925664",{"slug":2560,"name":2560,"fn":2561,"description":2562,"org":2563,"tags":2564,"stars":20,"repoUrl":21,"updatedAt":2574},"twilio-compliance-onboarding","manage Twilio messaging and voice compliance","Registrations required BEFORE Twilio traffic works. Covers messaging programs (A2P 10DLC, toll-free verification, WhatsApp WABA, RCS, short code, alphanumeric sender) and voice trust programs (STIR\u002FSHAKEN, Voice Integrity, Branded Calling, CNAM). Each number\u002Fsender type has its own program — registration blocks traffic until complete.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2565,2566,2569,2570,2571],{"name":2537,"slug":2538,"type":15},{"name":2567,"slug":2568,"type":15},"Messaging","messaging",{"name":2481,"slug":2482,"type":15},{"name":9,"slug":8,"type":15},{"name":2572,"slug":2573,"type":15},"WhatsApp","whatsapp","2026-07-17T06:05:47.897229",{"slug":2576,"name":2576,"fn":2577,"description":2578,"org":2579,"tags":2580,"stars":20,"repoUrl":21,"updatedAt":2590},"twilio-compliance-traffic","ensure compliance for Twilio messaging traffic","Rules you must follow for Twilio messaging and voice traffic. Covers TCPA (consent tiers, quiet hours, DNC), GDPR (EU consent, right to deletion), PCI DSS (payment recording, Pay verb), HIPAA (BAA, PHI), FDCPA (debt collection limits), CAN-SPAM, WhatsApp policies, SHAKEN\u002FSTIR, and consent management patterns. Use this skill proactively when developers have working traffic to ensure they follow the rules.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2581,2582,2583,2586,2589],{"name":2537,"slug":2538,"type":15},{"name":2567,"slug":2568,"type":15},{"name":2584,"slug":2585,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":2587,"slug":2588,"type":15},"Security","security",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.952779",{"slug":2592,"name":2592,"fn":2593,"description":2594,"org":2595,"tags":2596,"stars":20,"repoUrl":21,"updatedAt":2603},"twilio-conference-calls","build multi-party calls with Twilio Conference","Build multi-party calls using Twilio Conference. Covers warm transfer, cold transfer, coaching (whisper), hold vs mute, participant modes, and supervisor barge. Use this skill for any contact center, support line, or scenario requiring transfers, holds, or multi-party calls.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2597,2598,2599,2602],{"name":2534,"slug":2535,"type":15},{"name":2478,"slug":2479,"type":15},{"name":2600,"slug":2601,"type":15},"Meetings","meetings",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.603708",{"slug":2605,"name":2605,"fn":2606,"description":2607,"org":2608,"tags":2609,"stars":20,"repoUrl":21,"updatedAt":2617},"twilio-content-template-builder","create and send message templates with Twilio","Create, manage, and send message templates using Twilio's Content API. Covers template creation for WhatsApp, SMS, RCS, and MMS; variable usage; WhatsApp Meta approval; and sending templates via ContentSid. Use this skill when building structured messages that require pre-approval or consistent formatting across channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2610,2611,2612,2613,2616],{"name":17,"slug":18,"type":15},{"name":2567,"slug":2568,"type":15},{"name":2481,"slug":2482,"type":15},{"name":2614,"slug":2615,"type":15},"Templates","templates",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:26.637309",{"slug":2619,"name":2619,"fn":2620,"description":2621,"org":2622,"tags":2623,"stars":20,"repoUrl":21,"updatedAt":2635},"twilio-conversation-intelligence","build conversation intelligence pipelines","Twilio Conversation Intelligence development guide. Use when building real-time or post-call conversation analysis, language operator pipelines, sentiment analysis, agent assist, cross-channel analytics, or querying aggregated conversation insights (sentiment trends, escalation rates, dashboards).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2624,2625,2628,2631,2634],{"name":2491,"slug":2492,"type":15},{"name":2626,"slug":2627,"type":15},"Analytics","analytics",{"name":2629,"slug":2630,"type":15},"Monitoring","monitoring",{"name":2632,"slug":2633,"type":15},"NLP","nlp",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:52.545387",{"slug":2637,"name":2637,"fn":2638,"description":2639,"org":2640,"tags":2641,"stars":20,"repoUrl":21,"updatedAt":2647},"twilio-conversation-memory","manage conversation memory with Twilio","Store and retrieve conversation context using Twilio Conversation Memory. Covers Memory Store provisioning, profile management, traits, observations, conversation summaries, and semantic Recall. Use this skill to give AI agents or human agents persistent memory of conversations across sessions and channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2642,2643,2646],{"name":2491,"slug":2492,"type":15},{"name":2644,"slug":2645,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:19.526724",57,{"items":2650,"total":2648},[2651,2657,2665,2672,2678,2685,2692],{"slug":326,"name":326,"fn":2472,"description":2473,"org":2652,"tags":2653,"stars":20,"repoUrl":21,"updatedAt":2483},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2654,2655,2656],{"name":13,"slug":14,"type":15},{"name":2478,"slug":2479,"type":15},{"name":2481,"slug":2482,"type":15},{"slug":2485,"name":2485,"fn":2486,"description":2487,"org":2658,"tags":2659,"stars":20,"repoUrl":21,"updatedAt":2503},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2660,2661,2662,2663,2664],{"name":2491,"slug":2492,"type":15},{"name":2494,"slug":2495,"type":15},{"name":2497,"slug":2498,"type":15},{"name":2500,"slug":2501,"type":15},{"name":9,"slug":8,"type":15},{"slug":2505,"name":2505,"fn":2506,"description":2507,"org":2666,"tags":2667,"stars":20,"repoUrl":21,"updatedAt":2514},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2668,2669,2670,2671],{"name":2491,"slug":2492,"type":15},{"name":13,"slug":14,"type":15},{"name":2478,"slug":2479,"type":15},{"name":9,"slug":8,"type":15},{"slug":2516,"name":2516,"fn":2517,"description":2518,"org":2673,"tags":2674,"stars":20,"repoUrl":21,"updatedAt":2526},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2675,2676,2677],{"name":2491,"slug":2492,"type":15},{"name":2523,"slug":2524,"type":15},{"name":9,"slug":8,"type":15},{"slug":2528,"name":2528,"fn":2529,"description":2530,"org":2679,"tags":2680,"stars":20,"repoUrl":21,"updatedAt":2541},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2681,2682,2683,2684],{"name":2534,"slug":2535,"type":15},{"name":2537,"slug":2538,"type":15},{"name":2500,"slug":2501,"type":15},{"name":9,"slug":8,"type":15},{"slug":2543,"name":2543,"fn":2544,"description":2545,"org":2686,"tags":2687,"stars":20,"repoUrl":21,"updatedAt":2558},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2688,2689,2690,2691],{"name":2549,"slug":2550,"type":15},{"name":2552,"slug":2553,"type":15},{"name":2555,"slug":2556,"type":15},{"name":9,"slug":8,"type":15},{"slug":2560,"name":2560,"fn":2561,"description":2562,"org":2693,"tags":2694,"stars":20,"repoUrl":21,"updatedAt":2574},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2695,2696,2697,2698,2699],{"name":2537,"slug":2538,"type":15},{"name":2567,"slug":2568,"type":15},{"name":2481,"slug":2482,"type":15},{"name":9,"slug":8,"type":15},{"name":2572,"slug":2573,"type":15}]