Create a key to copy examples filled with your team.

Send test emails

Use the cluster test-send form or the send API.

The cluster page has a Send a message button. That form posts the same fields as POST /api/v1/teams/:team_id/clusters/:cluster_id/sends and goes through the same submit path.

What the form sends

  • from, to, cc, bcc, reply_to, subject
  • text and html
  • File uploads, stored as {filename, content_type, content}
  • headers and unique_args as JSON objects
  • tenant when the team has extra tenants
send.sh
1 curl -sS -X POST \
2 -H 'Authorization: Bearer YOUR_API_KEY' \
3 -H 'Content-Type: application/json' \
4 -d '{
5 "send": {
6 "from": "hello@mail.example.com",
7 "to": ["you@example.com"],
8 "subject": "PostShiba test",
9 "text": "hello from PostShiba",
10 "unique_args": {"campaign_id": "cmp_123", "site": "docs"}
11 }
12 }' \
13 https://postshiba.com/api/v1/teams/1/clusters/4/sends

A queued send redirects back to the cluster with the Message-ID. The same 403 errors apply. cluster_not_ready, domain_unverified, credential_missing, and suppressed.

The cluster page also shows SMTP, HTTP inject, and REST recipes. Those talk to the cluster host or this API. They are not a second send stack.

About

PostShiba is the transactional email platform that powers Bento behind the scenes. You can build your own products, like Bento, on top of it.

© 2026 PostShiba by Backpack Internet Pty. Ltd. All rights reserved.

The same policies that govern Bento are applied to PostShiba Privacy | Terms | Security