{"id":"97be0cbd-fc62-46f3-b285-17999c061a1f","shortId":"ubPVJC","kind":"skill","title":"send-email","tagline":"Use when sending transactional emails (welcome messages, order confirmations, password resets, receipts), notifications, or bulk emails via Resend API. Triggers on \"send email\", \"transactional email\", \"welcome email\", \"Resend API\", \"password reset email\", \"order confirmation\", \"r","description":"# Send Email with Resend\n\nThis skill is primarily context-independent, but when `brand/voice-profile.md` exists, use it to inform email tone, vocabulary, and personality for any copy written within emails.\n\n## On Activation\n\n1. Detect project language from config files (package.json, requirements.txt, go.mod, etc.).\n2. Install Resend SDK if not present — see [references/installation.md](references/installation.md).\n3. Determine single vs batch send based on the user's needs (see decision matrix below).\n4. Implement with idempotency keys, error handling, and retry logic.\n\n**Output:** Email sending code with production-grade error handling integrated into the user's project.\n\n## Overview\n\nResend provides two endpoints for sending emails:\n\n| Approach | Endpoint | Use Case |\n|----------|----------|----------|\n| **Single** | `POST /emails` | Individual transactional emails, emails with attachments, scheduled sends |\n| **Batch** | `POST /emails/batch` | Multiple distinct emails in one request (max 100), bulk notifications |\n\n**Choose batch when:**\n- Sending 2+ distinct emails at once\n- Reducing API calls is important (by default, rate limit is 2 requests per second)\n- No attachments or scheduling needed\n\n**Choose single when:**\n- Sending one email\n- Email needs attachments\n- Email needs to be scheduled\n- Different recipients need different timing\n\n## Quick Start\n\n1. **Detect project language** from config files (package.json, requirements.txt, go.mod, etc.)\n2. **Install SDK** (preferred) or use cURL - See [references/installation.md](references/installation.md)\n3. **Choose single or batch** based on the decision matrix above\n4. **Implement best practices** - Idempotency keys, error handling, retries\n\n## Best Practices (Critical for Production)\n\nAlways implement these for production email sending. See [references/best-practices.md](references/best-practices.md) for complete implementations.\n\n### Idempotency Keys\n\nPrevent duplicate emails when retrying failed requests.\n\n| Key Facts | |\n|-----------|---|\n| **Format (single)** | `<event-type>/<entity-id>` (e.g., `welcome-email/user-123`) |\n| **Format (batch)** | `batch-<event-type>/<batch-id>` (e.g., `batch-orders/batch-456`) |\n| **Expiration** | 24 hours |\n| **Max length** | 256 characters |\n| **Duplicate payload** | Returns original response without resending |\n| **Different payload** | Returns 409 error |\n\n### Error Handling\n\n| Code | Action |\n|------|--------|\n| 400, 422 | Fix request parameters, don't retry |\n| 401, 403 | Check API key / verify domain, don't retry |\n| 409 | Idempotency conflict - use new key or fix payload |\n| 429 | Rate limited - retry with exponential backoff (by default, rate limit is 2 requests/second) |\n| 500 | Server error - retry with exponential backoff |\n\n### Retry Strategy\n\n- **Backoff:** Exponential (1s, 2s, 4s...)\n- **Max retries:** 3-5 for most use cases\n- **Only retry:** 429 (rate limit) and 500 (server error)\n- **Always use:** Idempotency keys when retrying\n\n## Single Email\n\n**Endpoint:** `POST /emails` (prefer SDK over cURL)\n\n### Required Parameters\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `from` | string | Sender address. Format: `\"Name <email@domain.com>\"` |\n| `to` | string[] | Recipient addresses (max 50) |\n| `subject` | string | Email subject line |\n| `html` or `text` | string | Email body content |\n\n### Optional Parameters\n\n| Parameter | Type | Description |\n|-----------|------|-------------|\n| `cc` | string[] | CC recipients |\n| `bcc` | string[] | BCC recipients |\n| `reply_to`* | string[] | Reply-to addresses |\n| `scheduled_at`* | string | Schedule send time (ISO 8601) |\n| `attachments` | array | File attachments (max 40MB total) |\n| `tags` | array | Key/value pairs for tracking (see [Tags](#tags)) |\n| `headers` | object | Custom headers |\n\n*Parameter naming varies by SDK (e.g., `replyTo` in Node.js, `reply_to` in Python).\n\n### Minimal Example (Node.js)\n\n```typescript\nimport { Resend } from 'resend';\n\nconst resend = new Resend(process.env.RESEND_API_KEY);\n\nconst { data, error } = await resend.emails.send(\n  {\n    from: 'Acme <onboarding@resend.dev>',\n    to: ['delivered@resend.dev'],\n    subject: 'Hello World',\n    html: '<p>Email body here</p>',\n  },\n  { idempotencyKey: `welcome-email/${userId}` }\n);\n\nif (error) {\n  console.error('Failed:', error.message);\n  return;\n}\nconsole.log('Sent:', data.id);\n```\n\nSee [references/single-email-examples.md](references/single-email-examples.md) for all SDK implementations with error handling and retry logic.\n\n## Batch Email\n\n**Endpoint:** `POST /emails/batch` (but prefer SDK over cURL)\n\n### Limitations\n\n- **No attachments** - Use single sends for emails with attachments\n- **No scheduling** - Use single sends for scheduled emails\n- **Atomic** - If one email fails validation, the entire batch fails\n- **Max 100 emails** per request\n- **Max 50 recipients** per individual email in the batch\n\n### Pre-validation\n\nSince the entire batch fails on any validation error, validate all emails before sending:\n- Check required fields (from, to, subject, html/text)\n- Validate email formats\n- Ensure batch size <= 100\n\n### Minimal Example (Node.js)\n\n```typescript\nimport { Resend } from 'resend';\n\nconst resend = new Resend(process.env.RESEND_API_KEY);\n\nconst { data, error } = await resend.batch.send(\n  [\n    {\n      from: 'Acme <notifications@acme.com>',\n      to: ['delivered@resend.dev'],\n      subject: 'Order Shipped',\n      html: '<p>Your order has shipped!</p>',\n    },\n    {\n      from: 'Acme <notifications@acme.com>',\n      to: ['delivered@resend.dev'],\n      subject: 'Order Confirmed',\n      html: '<p>Your order is confirmed!</p>',\n    },\n  ],\n  { idempotencyKey: `batch-orders/${batchId}` }\n);\n\nif (error) {\n  console.error('Batch failed:', error.message);\n  return;\n}\nconsole.log('Sent:', data.map(e => e.id));\n```\n\nSee [references/batch-email-examples.md](references/batch-email-examples.md) for all SDK implementations with validation, error handling, and retry logic.\n\n## Large Batches (100+ Emails)\n\nFor sends larger than 100 emails, chunk into multiple batch requests:\n\n1. **Split into chunks** of 100 emails each\n2. **Use unique idempotency keys** per chunk: `<batch-prefix>/chunk-<index>`\n3. **Send chunks in parallel** for better throughput\n4. **Track results** per chunk to handle partial failures\n\nSee [references/batch-email-examples.md](references/batch-email-examples.md) for complete chunking implementations.\n\n## Deliverability\n\nFollow these practices to maximize inbox placement.\n\nFor more help with deliverability, install the email-best-practices skill with `npx skills add resend/email-best-practices`.\n\n### Required\n\n| Practice | Why |\n|----------|-----|\n| **Valid SPF, DKIM, DMARC record** | authenticate the email and prevent spoofing |\n| **Links match sending domain** | If sending from `@acme.com`, link to `https://acme.com` - mismatched domains trigger spam filters |\n| **Include plain text version** | Use both `html` and `text` parameters for accessibility and deliverability (Resend generates a plain text version if not provided) |\n| **Avoid \"no-reply\" addresses** | Use real addresses (e.g., `support@`) - improves trust signals |\n| **Keep body under 102KB** | Gmail clips larger messages |\n\n### Recommended\n\n| Practice | Why |\n|----------|-----|\n| **Use subdomains** | Send transactional from `notifications.acme.com`, marketing from `mail.acme.com` - protects reputation |\n| **Disable tracking for transactional** | Open/click tracking can trigger spam filters for password resets, receipts, etc. |\n\n## Tracking (Opens & Clicks)\n\nTracking is configured at the **domain level** in the Resend dashboard, not per-email.\n\n| Setting | How it works | Recommendation |\n|---------|--------------|----------------|\n| **Open tracking** | Inserts 1x1 transparent pixel | Disable for transactional emails - can hurt deliverability |\n| **Click tracking** | Rewrites links through redirect | Disable for sensitive emails (password resets, security alerts) |\n\n**When to enable tracking:**\n- Marketing emails where engagement metrics matter\n- Newsletters and announcements\n\n**When to disable tracking:**\n- Transactional emails (receipts, confirmations, password resets)\n- Security-sensitive emails\n- When maximizing deliverability is priority\n\nConfigure via dashboard: Domain → Configuration → Click/Open Tracking\n\n## Webhooks (Event Notifications)\n\nTrack email delivery status in real-time using webhooks. Resend sends HTTP POST requests to your endpoint when events occur.\n\n| Event | When to use |\n|-------|-------------|\n| `email.delivered` | Confirm successful delivery |\n| `email.bounced` | Remove from mailing list, alert user |\n| `email.complained` | Unsubscribe user (spam complaint) |\n| `email.opened` / `email.clicked` | Track engagement (marketing only) |\n\n**CRITICAL: Always verify webhook signatures.** Without verification, attackers can send fake events to your endpoint.\n\nSee [references/webhooks.md](references/webhooks.md) for setup, signature verification code, and all event types.\n\n## Tags\n\nTags are key/value pairs that help you track and filter emails.\n\n```typescript\ntags: [\n  { name: 'user_id', value: 'usr_123' },\n  { name: 'email_type', value: 'welcome' },\n  { name: 'plan', value: 'enterprise' }\n]\n```\n\n**Use cases:**\n- Associate emails with customers in your system\n- Categorize by email type (welcome, receipt, password-reset)\n- Filter emails in the Resend dashboard\n- Correlate webhook events back to your application\n\n**Constraints:** Tag names and values can only contain ASCII letters, numbers, underscores, or dashes. Max 256 characters each.\n\n## Templates\n\nUse pre-built templates instead of sending HTML with each request.\n\n```typescript\nconst { data, error } = await resend.emails.send({\n  from: 'Acme <hello@acme.com>',\n  to: ['delivered@resend.dev'],\n  subject: 'Welcome!',\n  template: {\n    id: 'tmpl_abc123',\n    variables: {\n      USER_NAME: 'John',      // Case-sensitive!\n      ORDER_TOTAL: '$99.00'\n    }\n  }\n});\n```\n\n**IMPORTANT:** Variable names are **case-sensitive** and must match exactly as defined in the template editor. `USER_NAME` ≠ `user_name`.\n\n| Fact | Detail |\n|------|--------|\n| **Max variables** | 20 per template |\n| **Reserved names** | `FIRST_NAME`, `LAST_NAME`, `EMAIL`, `RESEND_UNSUBSCRIBE_URL`, `contact`, `this` |\n| **Fallback values** | Optional - if not set and variable missing, send fails |\n| **Can't combine with** | `html`, `text`, or `react` parameters |\n\nTemplates must be **published** in the dashboard before use. Draft templates won't work.\n\n## Testing\n\n**WARNING: Never test with fake addresses at real email providers.**\n\nUsing addresses like `test@gmail.com`, `example@outlook.com`, or `fake@yahoo.com` will:\n- **Bounce** - These addresses don't exist\n- **Destroy your sender reputation** - High bounce rates trigger spam filters\n- **Get your domain blocklisted** - Providers flag domains with high bounce rates\n\n### Safe Testing Options\n\n| Method | Address | Result |\n|--------|---------|--------|\n| **Delivered** | `delivered@resend.dev` | Simulates successful delivery |\n| **Bounced** | `bounced@resend.dev` | Simulates hard bounce |\n| **Complained** | `complained@resend.dev` | Simulates spam complaint |\n| **Your own email** | Your actual address | Real delivery test |\n\n**For development:** Use the `resend.dev` test addresses to simulate different scenarios without affecting your reputation.\n\n**For staging:** Send to real addresses you control (team members, test accounts you own).\n\n## Domain Warm-up\n\nNew domains must gradually increase sending volume to establish reputation.\n\n**Why it matters:** Sudden high volume from a new domain triggers spam filters. ISPs expect gradual growth.\n\n### Recommended Schedule\n\n**Existing domain**\n\n| Day | Messages per day    | Messages per hour   |\n|-----|---------------------|---------------------|\n| 1   | Up to 1,000 emails  | 100 Maximum         |\n| 2   | Up to 2,500 emails  | 300 Maximum         |\n| 3   | Up to 5,000 emails  | 600 Maximum         |\n| 4   | Up to 5,000 emails  | 800 Maximum         |\n| 5   | Up to 7,500 emails  | 1,000 Maximum       |\n| 6   | Up to 7,500 emails  | 1,500 Maximum       |\n| 7   | Up to 10,000 emails | 2,000 Maximum       |\n\n**New domain**\n\n| Day | Messages per day    | Messages per hour   |\n|-----|---------------------|---------------------|\n| 1   | Up to 150 emails    |                    |\n| 2   | Up to 250 emails    |                    |\n| 3   | Up to 400 emails    |                    |\n| 4   | Up to 700 emails    | 50 Maximum         |\n| 5   | Up to 1,000 emails  | 75 Maximum         |\n| 6   | Up to 1,500 emails  | 100 Maximum        |\n| 7   | Up to 2,000 emails  | 150 Maximum        |\n\n### Monitor These Metrics\n\n| Metric | Target | Action if exceeded |\n|--------|--------|-------------------|\n| **Bounce rate** | < 4% | Slow down, clean list |\n| **Spam complaint rate** | < 0.08% | Slow down, review content |\n\n**Don't use third-party warm-up services.** Focus on sending relevant content to real, engaged recipients.\n\n## Suppression List\n\nResend automatically manages a suppression list of addresses that should not receive emails.\n\n**Addresses are added when:**\n- Email hard bounces (address doesn't exist)\n- Recipient marks email as spam\n- You manually add them via dashboard\n\n**What happens:** Resend won't attempt delivery to suppressed addresses. The `email.suppressed` webhook event fires instead.\n\n**Why this matters:** Continuing to send to bounced/complained addresses destroys your reputation. The suppression list protects you automatically.\n\n**Management:** View and manage suppressed addresses in the Resend dashboard under Suppressions.\n\n## Anti-Patterns\n\n| Mistake | Fix |\n|---------|-----|\n| Retrying without idempotency key | Always include idempotency key - prevents duplicate sends on retry |\n| Using batch for emails with attachments | Batch doesn't support attachments - use single sends instead |\n| Not validating batch before send | Validate all emails first - one invalid email fails the entire batch |\n| Retrying 400/422 errors | These are validation errors - fix the request, don't retry |\n| Same idempotency key, different payload | Returns 409 error - use unique key per unique email content |\n| Tracking enabled for transactional emails | Disable open/click tracking for password resets, receipts - hurts deliverability |\n| Using \"no-reply\" sender address | Use real address like `support@` - improves trust signals with email providers |\n| Not verifying webhook signatures | Always verify - attackers can send fake events to your endpoint |\n| Testing with fake emails (test@gmail.com) | Use `delivered@resend.dev` - fake addresses bounce and hurt reputation |\n| Template variable name mismatch | Variable names are case-sensitive - `USER_NAME` ≠ `user_name` |\n| Sending high volume from new domain | Warm up gradually - sudden spikes trigger spam filters |\n\n## Notes\n\n- The `from` address must use a verified domain\n- If the sending address cannot receive replies, set the `reply_to` parameter to a valid address.\n- Store API key in `RESEND_API_KEY` environment variable\n- Node.js SDK supports `react` parameter for React Email components\n- Resend returns `error`, `data`, `headers` in the response.\n- Data returns `{ id: \"email-id\" }` on success (single) or array of IDs (batch)\n- For marketing campaigns to large lists, use Resend Broadcasts instead","tags":["send","email","marketing","cli","moizibnyousaf","agent-skills","ai-agents","ai-marketing","brand-memory","brand-voice","claude-code","claude-code-skills"],"capabilities":["skill","source-moizibnyousaf","skill-send-email","topic-agent-skills","topic-ai-agents","topic-ai-marketing","topic-brand-memory","topic-brand-voice","topic-claude-code","topic-claude-code-skills","topic-cli","topic-cmo","topic-marketing-automation","topic-marketing-cli","topic-seo"],"categories":["marketing-cli"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/MoizIbnYousaf/marketing-cli/send-email","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add MoizIbnYousaf/marketing-cli","source_repo":"https://github.com/MoizIbnYousaf/marketing-cli","install_from":"skills.sh"}},"qualityScore":"0.459","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 18 github stars · SKILL.md body (15,437 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:05:52.096Z","embedding":null,"createdAt":"2026-05-04T19:06:15.827Z","updatedAt":"2026-05-18T19:05:52.096Z","lastSeenAt":"2026-05-18T19:05:52.096Z","tsv":"'-5':385 '/batch-456':303 '/chunk-':754 '/emails':148,409 '/emails/batch':159,568 '/user-123':295 '0.08':1544 '000':1416,1432,1440,1451,1466,1469,1506,1522 '1':71,219,739,1412,1415,1450,1459,1480,1505,1513 '10':1465 '100':167,603,646,726,732,744,1418,1516 '102kb':873 '123':1092 '150':1483,1524 '1s':379 '1x1':933 '2':82,174,189,230,366,747,1420,1423,1468,1485,1521 '20':1216 '24':305 '250':1488 '256':309,1148 '2s':380 '3':92,240,384,755,1428,1490 '300':1426 '4':108,251,763,1436,1495,1536 '400':327,1493 '400/422':1701 '401':335 '403':336 '409':321,345,1719 '40mb':477 '422':328 '429':354,392 '4s':381 '5':1431,1439,1444,1502 '50':431,608,1500 '500':368,396,1424,1448,1457,1460,1514 '6':1453,1510 '600':1434 '7':1447,1456,1462,1518 '700':1498 '75':1508 '800':1442 '8601':471 '99.00':1190 'abc123':1180 'access':845 'account':1367 'acm':526,668,681,1171 'acme.com':825,828 'action':326,1531 'activ':70 'actual':1336 'ad':1585 'add':802,1601 'address':422,429,463,861,864,1271,1277,1286,1315,1337,1347,1361,1577,1583,1590,1614,1629,1644,1747,1750,1781,1817,1826,1838 'affect':1353 'alert':956,1033 'alway':265,399,1047,1660,1763 'announc':969 'anti':1652 'anti-pattern':1651 'api':22,32,180,338,518,660,1840,1844 'applic':1132 'approach':142 'array':473,480,1875 'ascii':1141 'associ':1104 'atom':592 'attach':154,194,206,472,475,576,583,1674,1679 'attack':1053,1765 'attempt':1610 'authent':812 'automat':1571,1638 'avoid':857 'await':523,665,1168 'back':1129 'backoff':360,374,377 'base':98,245 'batch':96,157,171,244,297,298,301,564,600,615,622,644,695,701,725,737,1670,1675,1686,1699,1878 'batch-ord':300,694 'batchid':697 'bcc':453,455 'best':253,260,796 'better':761 'blocklist':1303 'bodi':442,535,871 'bounc':1284,1295,1309,1322,1326,1534,1589,1782 'bounced/complained':1628 'bounced@resend.dev':1323 'brand/voice-profile.md':52 'broadcast':1887 'built':1155 'bulk':18,168 'call':181 'campaign':1881 'cannot':1827 'case':145,389,1103,1186,1196,1794 'case-sensit':1185,1195,1793 'categor':1111 'cc':449,451 'charact':310,1149 'check':337,633 'choos':170,198,241 'chunk':734,742,753,757,767,777 'clean':1539 'click':909,943 'click/open':994 'clip':875 'code':121,325,1068 'combin':1244 'complain':1327 'complained@resend.dev':1328 'complaint':1039,1331,1542 'complet':276,776 'compon':1856 'config':76,224 'configur':912,989,993 'confirm':12,37,687,692,977,1025 'conflict':347 'console.error':544,700 'console.log':548,705 'const':513,520,655,662,1165 'constraint':1133 'contact':1229 'contain':1140 'content':443,1548,1563,1727 'context':48 'context-independ':47 'continu':1624 'control':1363 'copi':65 'correl':1126 'critic':262,1046 'curl':236,413,573 'custom':490,1107 'dash':1146 'dashboard':920,991,1125,1257,1604,1648 'data':521,663,1166,1860,1865 'data.id':550 'data.map':707 'day':1405,1408,1473,1476 'decis':105,248 'default':185,362 'defin':1203 'deliv':1317 'deliver':779,791,847,942,986,1741 'delivered@resend.dev':529,671,684,1174,1318,1779 'deliveri':1001,1027,1321,1339,1611 'descript':418,448 'destroy':1290,1630 'detail':1213 'detect':72,220 'determin':93 'develop':1342 'differ':212,215,318,1350,1716 'disabl':892,936,949,972,1733 'distinct':161,175 'dkim':809 'dmarc':810 'doesn':1591,1676 'domain':341,821,830,915,992,1302,1306,1370,1375,1393,1404,1472,1805,1822 'draft':1260 'duplic':281,311,1665 'e':708 'e.g':291,299,497,865 'e.id':709 'editor':1207 'email':3,8,19,26,28,30,35,40,58,68,119,141,151,152,162,176,203,204,207,270,282,294,406,434,441,534,540,565,581,591,595,604,612,630,641,727,733,745,795,814,924,939,952,962,975,983,1000,1084,1094,1105,1113,1121,1225,1274,1334,1417,1425,1433,1441,1449,1458,1467,1484,1489,1494,1499,1507,1515,1523,1582,1587,1596,1672,1691,1695,1726,1732,1757,1776,1855,1869 'email-best-practic':794 'email-id':1868 'email.bounced':1028 'email.clicked':1041 'email.complained':1035 'email.delivered':1024 'email.opened':1040 'email.suppressed':1616 'email@domain.com':425 'enabl':959,1729 'endpoint':138,143,407,566,1016,1060,1772 'engag':964,1043,1566 'ensur':643 'enterpris':1101 'entir':599,621,1698 'environ':1846 'error':113,126,257,322,323,370,398,522,543,559,627,664,699,719,1167,1702,1706,1720,1859 'error.message':546,703 'establish':1382 'etc':81,229,906 'event':997,1018,1020,1057,1071,1128,1618,1769 'exact':1201 'exampl':506,648 'example@outlook.com':1280 'exceed':1533 'exist':53,1289,1403,1593 'expect':1398 'expir':304 'exponenti':359,373,378 'fact':288,1212 'fail':285,545,596,601,623,702,1241,1696 'failur':771 'fake':1056,1270,1768,1775,1780 'fake@yahoo.com':1282 'fallback':1231 'field':635 'file':77,225,474 'filter':833,901,1083,1120,1299,1396,1813 'fire':1619 'first':1221,1692 'fix':329,352,1655,1707 'flag':1305 'focus':1559 'follow':780 'format':289,296,423,642 'generat':849 'get':1300 'gmail':874 'go.mod':80,228 'grade':125 'gradual':1377,1399,1808 'growth':1400 'handl':114,127,258,324,560,720,769 'happen':1606 'hard':1325,1588 'header':488,491,1861 'hello':531 'hello@acme.com':1172 'help':789,1079 'high':1294,1308,1388,1801 'hour':306,1411,1479 'html':437,533,675,688,840,1160,1246 'html/text':639 'http':1011 'hurt':941,1740,1784 'id':1089,1178,1867,1870,1877 'idempot':111,255,278,346,401,750,1658,1662,1714 'idempotencykey':537,693 'implement':109,252,266,277,557,716,778 'import':183,509,651,1191 'improv':867,1753 'inbox':785 'includ':834,1661 'increas':1378 'independ':49 'individu':149,611 'inform':57 'insert':932 'instal':83,231,792 'instead':1157,1620,1683,1888 'integr':128 'invalid':1694 'iso':470 'isp':1397 'john':1184 'keep':870 'key':112,256,279,287,339,350,402,519,661,751,1659,1663,1715,1723,1841,1845 'key/value':481,1076 'languag':74,222 'larg':724,1883 'larger':730,876 'last':1223 'length':308 'letter':1142 'level':916 'like':1278,1751 'limit':187,356,364,394,574 'line':436 'link':818,826,946 'list':1032,1540,1569,1575,1635,1884 'logic':117,563,723 'mail':1031 'mail.acme.com':889 'manag':1572,1639,1642 'manual':1600 'mark':1595 'market':887,961,1044,1880 'match':819,1200 'matrix':106,249 'matter':966,1386,1623 'max':166,307,382,430,476,602,607,1147,1214 'maxim':784,985 'maximum':1419,1427,1435,1443,1452,1461,1470,1501,1509,1517,1525 'member':1365 'messag':10,877,1406,1409,1474,1477 'method':1314 'metric':965,1528,1529 'minim':505,647 'mismatch':829,1789 'miss':1239 'mistak':1654 'monitor':1526 'multipl':160,736 'must':1199,1252,1376,1818 'name':424,493,1087,1093,1098,1135,1183,1193,1209,1211,1220,1222,1224,1788,1791,1797,1799 'need':103,197,205,208,214 'never':1267 'new':349,515,657,1374,1392,1471,1804 'newslett':967 'no-repli':858,1743 'node.js':500,507,649,1848 'note':1814 'notif':16,169,998 'notifications.acme.com':886 'notifications@acme.com':669,682 'npx':800 'number':1143 'object':489 'occur':1019 'onboarding@resend.dev':527 'one':164,202,594,1693 'open':908,930 'open/click':896,1734 'option':444,1233,1313 'order':11,36,302,673,677,686,690,696,1188 'origin':314 'output':118 'overview':134 'package.json':78,226 'pair':482,1077 'parallel':759 'paramet':331,415,416,445,446,492,843,1250,1834,1852 'parti':1554 'partial':770 'password':13,33,903,953,978,1118,1737 'password-reset':1117 'pattern':1653 'payload':312,319,353,1717 'per':191,605,610,752,766,923,1217,1407,1410,1475,1478,1724 'per-email':922 'person':62 'pixel':935 'placement':786 'plain':835,851 'plan':1099 'post':147,158,408,567,1012 'practic':254,261,782,797,805,879 'pre':617,1154 'pre-built':1153 'pre-valid':616 'prefer':233,410,570 'present':88 'prevent':280,816,1664 'primarili':46 'prioriti':988 'process.env.resend':517,659 'product':124,264,269 'production-grad':123 'project':73,133,221 'protect':890,1636 'provid':136,856,1275,1304,1758 'publish':1254 'python':504 'quick':217 'r':38 'rate':186,355,363,393,1296,1310,1535,1543 'react':1249,1851,1854 'real':863,1005,1273,1338,1360,1565,1749 'real-tim':1004 'receipt':15,905,976,1116,1739 'receiv':1581,1828 'recipi':213,428,452,456,609,1567,1594 'recommend':878,929,1401 'record':811 'redirect':948 'reduc':179 'references/batch-email-examples.md':711,712,773,774 'references/best-practices.md':273,274 'references/installation.md':90,91,238,239 'references/single-email-examples.md':552,553 'references/webhooks.md':1062,1063 'relev':1562 'remov':1029 'repli':457,461,501,860,1745,1829,1832 'reply-to':460 'replyto':498 'reput':891,1293,1355,1383,1632,1785 'request':165,190,286,330,606,738,1013,1163,1709 'requests/second':367 'requir':414,634,804 'requirements.txt':79,227 'resend':21,31,42,84,135,317,510,512,514,516,652,654,656,658,848,919,1009,1124,1226,1570,1607,1647,1843,1857,1886 'resend.batch.send':666 'resend.dev':1345 'resend.emails.send':524,1169 'resend/email-best-practices':803 'reserv':1219 'reset':14,34,904,954,979,1119,1738 'respons':315,1864 'result':765,1316 'retri':116,259,284,334,344,357,371,375,383,391,404,562,722,1656,1668,1700,1712 'return':313,320,547,704,1718,1858,1866 'review':1547 'rewrit':945 'safe':1311 'scenario':1351 'schedul':155,196,211,464,467,585,590,1402 'sdk':85,232,411,496,556,571,715,1849 'second':192 'secur':955,981 'security-sensit':980 'see':89,104,237,272,485,551,710,772,1061 'send':2,6,25,39,97,120,140,156,173,201,271,468,579,588,632,729,756,820,823,883,1010,1055,1159,1240,1358,1379,1561,1626,1666,1682,1688,1767,1800,1825 'send-email':1 'sender':421,1292,1746 'sensit':951,982,1187,1197,1795 'sent':549,706 'server':369,397 'servic':1558 'set':925,1236,1830 'setup':1065 'ship':674,679 'signal':869,1755 'signatur':1050,1066,1762 'simul':1319,1324,1329,1349 'sinc':619 'singl':94,146,199,242,290,405,578,587,1681,1873 'size':645 'skill':44,798,801 'skill-send-email' 'slow':1537,1545 'source-moizibnyousaf' 'spam':832,900,1038,1298,1330,1395,1541,1598,1812 'spf':808 'spike':1810 'split':740 'spoof':817 'stage':1357 'start':218 'status':1002 'store':1839 'strategi':376 'string':420,427,433,440,450,454,459,466 'subdomain':882 'subject':432,435,530,638,672,685,1175 'success':1026,1320,1872 'sudden':1387,1809 'support':866,1678,1752,1850 'suppress':1568,1574,1613,1634,1643,1650 'system':1110 'tag':479,486,487,1073,1074,1086,1134 'target':1530 'team':1364 'templat':1151,1156,1177,1206,1218,1251,1261,1786 'test':1265,1268,1312,1340,1346,1366,1773 'test@gmail.com':1279,1777 'text':439,836,842,852,1247 'third':1553 'third-parti':1552 'throughput':762 'time':216,469,1006 'tmpl':1179 'tone':59 'topic-agent-skills' 'topic-ai-agents' 'topic-ai-marketing' 'topic-brand-memory' 'topic-brand-voice' 'topic-claude-code' 'topic-claude-code-skills' 'topic-cli' 'topic-cmo' 'topic-marketing-automation' 'topic-marketing-cli' 'topic-seo' 'total':478,1189 'track':484,764,893,897,907,910,931,944,960,973,995,999,1042,1081,1728,1735 'transact':7,27,150,884,895,938,974,1731 'transpar':934 'trigger':23,831,899,1297,1394,1811 'trust':868,1754 'two':137 'type':417,447,1072,1095,1114 'typescript':508,650,1085,1164 'underscor':1144 'uniqu':749,1722,1725 'unsubscrib':1036,1227 'url':1228 'use':4,54,144,235,348,388,400,577,586,748,838,862,881,1007,1023,1102,1152,1259,1276,1343,1551,1669,1680,1721,1742,1748,1778,1819,1885 'user':101,131,1034,1037,1088,1182,1208,1210,1796,1798 'userid':541 'usr':1091 'valid':597,618,626,628,640,718,807,1685,1689,1705,1837 'valu':1090,1096,1100,1137,1232 'vari':494 'variabl':1181,1192,1215,1238,1787,1790,1847 'verif':1052,1067 'verifi':340,1048,1760,1764,1821 'version':837,853 'via':20,990,1603 'view':1640 'vocabulari':60 'volum':1380,1389,1802 'vs':95 'warm':1372,1556,1806 'warm-up':1371,1555 'warn':1266 'webhook':996,1008,1049,1127,1617,1761 'welcom':9,29,293,539,1097,1115,1176 'welcome-email':292,538 'within':67 'without':316,1051,1352,1657 'won':1262,1608 'work':928,1264 'world':532 'written':66","prices":[{"id":"55430f5d-c3aa-42ea-81ec-c20bb265a1ad","listingId":"97be0cbd-fc62-46f3-b285-17999c061a1f","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"MoizIbnYousaf","category":"marketing-cli","install_from":"skills.sh"},"createdAt":"2026-05-04T19:06:15.827Z"}],"sources":[{"listingId":"97be0cbd-fc62-46f3-b285-17999c061a1f","source":"github","sourceId":"MoizIbnYousaf/marketing-cli/send-email","sourceUrl":"https://github.com/MoizIbnYousaf/marketing-cli/tree/main/skills/send-email","isPrimary":false,"firstSeenAt":"2026-05-04T19:06:15.827Z","lastSeenAt":"2026-05-18T19:05:52.096Z"}],"details":{"listingId":"97be0cbd-fc62-46f3-b285-17999c061a1f","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"MoizIbnYousaf","slug":"send-email","github":{"repo":"MoizIbnYousaf/marketing-cli","stars":18,"topics":["agent-skills","ai-agents","ai-marketing","brand-memory","brand-voice","claude-code","claude-code-skills","cli","cmo","marketing-automation","marketing-cli","seo","skills-sh","typescript"],"license":"mit","html_url":"https://github.com/MoizIbnYousaf/marketing-cli","pushed_at":"2026-05-13T21:06:05Z","description":"Agent-native marketing cli: 51 skills, 5 research agents, brand memory that compounds, plus a local Studio dashboard (beta). single agent-native cli, then /cmo in ur coding agent..","skill_md_sha":"d6ccf02c16f7abb52ef183c86f6ad9d83cc4f9b7","skill_md_path":"skills/send-email/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/MoizIbnYousaf/marketing-cli/tree/main/skills/send-email"},"layout":"multi","source":"github","category":"marketing-cli","frontmatter":{"name":"send-email","description":"Use when sending transactional emails (welcome messages, order confirmations, password resets, receipts), notifications, or bulk emails via Resend API. Triggers on \"send email\", \"transactional email\", \"welcome email\", \"Resend API\", \"password reset email\", \"order confirmation\", \"receipt email\", \"notification email\", \"bulk email send\"."},"skills_sh_url":"https://skills.sh/MoizIbnYousaf/marketing-cli/send-email"},"updatedAt":"2026-05-18T19:05:52.096Z"}}