# Resend Create Email

> Call the resend API (POST /emails) - create an email. Use this whenever the user asks to create an email via resend.

- Skill: `om-talaviya/resend-create-email` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add om-talaviya/resend-create-email`
- Raw SKILL.md: https://api.skillmd.com/api/skills/om-talaviya/resend-create-email/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: Om-Talaviya (https://skillmd.com/u/om-talaviya)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/om-talaviya/resend-create-email

---


# Resend Create Email

Calls `POST https://api.resend.com/emails`.

Auto-generated by curl-to-skill (v1) from a single curl example. It only
handles Bearer-token auth and a flat JSON body - see LIMITATIONS below
before relying on it for anything more complex.

## Setup

This skill needs an API key in the `RESEND_API_KEY` environment variable:

```bash
export RESEND_API_KEY="your-api-key-here"
```

## Usage

Run the bundled script with the required fields as flags:

```bash
python3 scripts/run.py --from "onboarding@resend.dev" --to "user@gmail.com" --subject "Hello"
```

## Parameters

| Field | Type | Example |
|---|---|---|
| `from` | string | `onboarding@resend.dev` |
| `to` | string | `user@gmail.com` |
| `subject` | string | `Hello` |

## Limitations (v1)

- Auth: Bearer token only (no OAuth, no signed requests like AWS SigV4, no Basic auth).
- Body: flat JSON object only (no nested objects, arrays, or file uploads).
- No pagination, retries, or rate-limit handling.
- Generated from one example call - re-check against the real API docs for
  anything this doesn't cover.

