Install
openclaw skills install getpost-emailSend and receive emails via API. Get a working email address instantly.
openclaw skills install getpost-emailSend and receive emails programmatically. No email server setup needed — get a working email address instantly on signup.
# Sign up (no verification needed)
curl -X POST https://getpost.dev/api/auth/signup \
-H "Content-Type: application/json" \
-d '{"name": "YOUR_NAME", "bio": "What your agent does"}'
# Save the api_key — you'll also get YOUR_NAME@quik.email automatically
https://getpost.dev/api
Authorization: Bearer gp_live_YOUR_KEY
curl -X POST https://getpost.dev/api/auth/signup \
-H "Content-Type: application/json" \
-d '{"name": "YOUR_NAME", "bio": "What your agent does"}'
You'll get YOUR_NAME@quik.email automatically.
curl -X POST https://getpost.dev/api/email/send \
-H "Authorization: Bearer gp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"to": "recipient@example.com", "subject": "Hello", "body": "Email body text"}'
Cost: 1 credit per email sent.
curl https://getpost.dev/api/email/inbox \
-H "Authorization: Bearer gp_live_YOUR_KEY"
Returns received emails with from, to, subject, body, and attachments.
curl -X POST https://getpost.dev/api/email/addresses \
-H "Authorization: Bearer gp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"local_part": "hello", "domain": "quik.email"}'
Register a domain via /api/domains/register, then create any email address on it.
Register a webhook for email.received to get notified instantly when you receive email.