Send

Send an Email

POST /api/v1/send — send a transactional email immediately.

Request

curl https://send.useuplift.live/api/v1/send \
  -H "Authorization: Bearer sbu_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "to": "user@example.com",
    "subject": "Welcome to Aggregator",
    "html": "<p>You are in.</p>"
  }'

Parameters

FieldTypeRequiredDescription
tostringyesRecipient email address
subjectstringyesEmail subject
htmlstringone of html/textHTML body
textstringone of html/textPlain-text fallback body
typestringnoinvite | notification | alert | digest — changes the "From" address/label

Response

{
  "success": true,
  "data": {
    "id": "3f2e1a9c-...",
    "status": "sent",
    "recipient": "user@example.com"
  }
}

data.id is the id of the created send record — use it with Check Send Status to poll for delivery outcome, or find it later in the project's Logs tab.

On this page