Use Zapier to trigger postal mail from thousands of apps, then route mailbox.bot delivery events back into the same automation path.
Zapier trigger collects source app data.
Formatter or AI step drafts the letter body or chooses a PDF.
Webhook or code step calls mailbox.bot with dry_run=true.
Approval step gates live sends when needed.
mailbox.bot webhook updates the source app, Zapier table, Slack channel, or task.
curl -X POST https://mailbox.bot/api/v1/mail \ -H "Authorization: Bearer sk_agent_test_..." \ -H "X-Mailbox-MD-Version: 3" \ -H "X-Max-Cost-Cents: 1500" \ -F "document=@notice.pdf" \ -F "recipient_name=Recipient Name" \ -F "recipient_line1=123 Main Street" \ -F "recipient_city=San Francisco" \ -F "recipient_state=CA" \ -F "recipient_zip=94105" \ -F "mail_class=certified" \ -F "dry_run=true" \ -F 'metadata[source]=zapier'