MailGenie

Developers

Transactional email for agents and pipelines

A template and a call — send_transactional, compose from a brief, enrol sequences from your events. Live API keys on Glow+. Same surface as GenieOS email for developers.

// 02:14 — Mail Genie on the agent's shiftconst mg = new GenieOS();const brief = await mg.brand.read();for (const ch of channels) { await mg.ship(ch, brief);}email sentpost scheduledpage livesms sent
mail-genie · integrations
compose-send.shbash
# Compose a draft from a briefcurl -X POST https://api.genieos.pro/v1/templates/compose \  -H "Authorization: Bearer $GENIEOS_API_KEY" \  -H "Content-Type: application/json" \  -d '{    "brief": "Welcome email for new Spark signups — warm, editorial tone",    "key": "welcome"  }' # Send transactionally (idempotent)curl -X POST https://api.genieos.pro/v1/templates/welcome/send \  -H "Authorization: Bearer $GENIEOS_API_KEY" \  -H "Content-Type: application/json" \  -H "Idempotency-Key: welcome-$(uuidgen)" \  -d '{    "to": "[email protected]",    "variables": { "firstName": "Alex" }  }'

Same GenieOS key · REST · MCP · SDK