ZeqEmail
Pulse-verified email dispatch. DKIM/SPF/DMARC compliant with Zeqond timestamp headers for cryptographic send-time provenance.
| Endpoint | POST /api/comms/email |
| Auth | api-key |
| Rate limit | 20/min |
| Category | communications |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
to | string | Yes | Recipient email address. |
subject | string | Yes | Email subject line. |
body | string | Yes | HTML or plain-text body. |
format | string | No | 'html' or 'text'. |
Returns
{ messageId, status, zeqondStamp, deliveryHash }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"to": "<to>",
"subject": "<subject>",
"body": "<body>",
"format": "html"
}' \
"https://zeqsdk.com/api/comms/email"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-email.