---
name: notify.melis.ai
description: notify.melis.ai exposes a single endpoint for sending transactional emails to individual recipients, returning a message ID, delivery status, and payment hash. It is purpose-built for programmatic, single-recipient notifications such as verification codes, alerts, and event-driven messages.
host: notify.melis.ai
---

# notify.melis.ai

notify.melis.ai is a narrow, single-purpose transactional email host on the x402 network. It serves agents that need to deliver one-off emails to a known address and require machine-readable confirmation (message ID, status) that the send was accepted. It does not offer list management, templates, analytics, or bulk sending.

## When to use this host

Use this host when an agent needs to send a one-off transactional email — such as an OTP, alert, or system notification — to a single known address and must confirm delivery programmatically via a message ID. Do not use it for bulk campaigns, mailing lists, or multi-recipient broadcasts; those use cases require a dedicated email marketing platform (e.g., SendGrid Marketing, Mailchimp). If rich template rendering, open/click tracking, or unsubscribe management is needed, this host is not appropriate. It is best suited as a lightweight notification step inside a larger agent workflow where payment-hash-verified delivery confirmation is useful.

## Capabilities

### Transactional Email Delivery

Sends a single email to a specified recipient and returns a delivery confirmation including a message ID and provider status.

- **`send-transactional-email`** — Sends a transactional or notification email to a specified recipient via the Melis /email endpoint, returning a message ID and delivery status.

## Skill reference

### `send-transactional-email`

**Melis Email Notify** — Sends a transactional or notification email to a specified recipient via the Melis /email endpoint, returning a message ID and delivery status.

*Use when:* Use when an agent needs to deliver a transactional email (e.g., verification codes, alerts, notifications) to a user-supplied address and requires a machine-readable confirmation of delivery.

*Not for:* Do not use for bulk marketing campaigns or mailing lists; this endpoint is designed for single-recipient transactional messages only.

**Inputs:**

- `to` (string, required) — Recipient email address to which the message will be sent.
- `subject` (string, required) — Email subject line displayed in the recipient's inbox.
- `body` (string, required) — Email body content; accepts plain text or HTML.

**Returns:** Returns a JSON object with a unique message_id, status 'sent', the provider name ('resend'), and a payment_hash string.

**Example:** `{"to": "recipient@example.com", "subject": "Your account email verification code", "body": "Hi there,\n\nUse the following verification code to complete your email verification:\n\nCode: 482917\n\nThis code expires in 15 minutes.\n\nThanks,\nMelis Notifications"}`

---
