Use mailbox.bot around AppFolio-centered operations to send lease violations, rent reminders, move-out notices, security deposit accountings, and maintenance letters with delivery proof.
Agent or middleware receives property-management context.
Notice PDF is generated from tenant, property, lease, and deadline data.
mailbox.bot dry run validates the send.
Human approves legal or certified notices.
Delivery proof is stored back in the property management record or external case file.
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]=appfolio'