---
title: "Send Email"
method: POST
path: "/email/send"
tags: ["Email"]
---

# Send Email

`POST /email/send`

Send an email to one or more recipients through the Wunderkind email delivery platform to a subscribers
of the website id set by wunderkind.

This endpoint supports both HTML and plain text email content, custom sender information,
and flexible recipient management. All emails are processed synchronously.

**Important Notes:**
- All recipient email addresses must be valid and properly formatted
- The sender email address must be verified and susbcribed for the website id set by wunderkind
- If the email address is not subscribed, system silently ignores
- HTML content should be properly encoded and sanitized
- Large recipient lists may experience delayed processing

## Request body

- EmailRequest
  - `to_emails` string[], required — List of recipient email addresses
  - `subject` string, required — Email subject line
  - `from` string, email, required — Sender email address
  - `from_name` string — Sender display name
  - `reply_to` string, email — Reply-to email address
  - `body` string, required — Email body content (HTML or plain text)

## Response `200`

Email sent successfully

- EmailResponse
  - `status_code` 'Success' | 'Error', required — Status code indicating the result of the email send operation
  - `message` string, required — Human-readable message describing the result

## Other responses

- `400` — Bad request - Invalid input data
- `401` — Unauthorized - Invalid or missing authentication token
- `422` — Unprocessable Entity - Validation errors
- `500` — Internal server error

---

[API](https://skmtc.net/wunderkind/apis/wunderhook.md) · [All operations](https://skmtc.net/wunderkind/apis/wunderhook/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/wunderkind/wunderhook/versions/a25138bc98f4/schema)
