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:
export RESEND_API_KEY="your-api-key-here"
Usage
Run the bundled script with the required fields as flags:
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.