Skip to main content

Send mail from a Stripe event

Mail a paper invoice or receipt the moment Stripe finalizes it: pair Stripe’s own Zapier, Make, or n8n trigger with paperplane’s Send Letter action, using the invoice PDF as pdf_url — from $1.99, USPS-verified.

Via Zapier, Make, or n8n — no direct app yet

Instead of Stripe's emailed invoice

Stripe emails the invoice; accounts-payable teams, HOAs and courts often want it on paper, and a dunning email is easy to ignore. The invoice PDF Stripe already hosts is a valid pdf_url, so the paper copy is $1.99 and no extra rendering.

How to set it up

  1. 1In Zapier, Make, or n8n, trigger on Stripe’s "Invoice Finalized" or "Invoice Paid" event.
  2. 2Add the paperplane Send Letter action, setting pdf_url to the invoice’s hosted PDF link (Stripe returns one on every invoice object).
  3. 3Map the customer’s billing address (also on the Stripe customer/invoice object) into the to fields.
  4. 4Sandbox-test one invoice first, then go live — every finalized invoice mails itself as a paper copy.

Order from a Stripe invoice PDF

{
  "mail_class": "first_class",
  "pdf_url": "https://pay.stripe.com/invoice/acct_.../pdf",
  "to":   { "name": "Maria Alvarez", "line1": "1 Main St",
            "city": "Richmond", "state": "VA", "zip": "23220" },
  "from": { "name": "Alex Rivera", "line1": "12 Grove Ave",
            "city": "Richmond", "state": "VA", "zip": "23221" },
  "email": "alex@example.com"
}

Under the hood

Stripe’s own hosted invoice PDF is a fetchable URL, which is exactly what pdf_url wants — no PDF generation step needed on paperplane’s side. There’s no paperplane-specific Stripe app yet; this pairs Stripe’s standard Zapier/Make/n8n triggers with the same Send Letter action documented across this directory.

Supported action fields

Every integration maps into the same fixed set of fields, the ones the REST API and MCP tools take directly.

FieldWhat it does
mail_classfirst_class, certified, certified_return_receipt, or priority
text or pdf_urlthe letter body as plain text, or a fetchable PDF to print as-is
torecipient name + street/city/state/zip, verified against USPS data
fromreturn address, printed on the envelope and used for undeliverable mail
emailwhere the receipt and status updates go — no account required

Popular Stripe workflows

Or skip the automation tool: ask Claude or ChatGPT

Every integration here sits on the same MCP endpoint agents use directly. Instead of wiring a trigger to an action, ask Claude or ChatGPT to draft and mail the letter. Same three tools (quote_letter, send_letter, get_letter_status), same price, same free sandbox.

Send mail from ClaudeSend mail from ChatGPT

Related integrations

Send your first letter from Stripe.

Sandbox runs the whole pipeline for free and mails nothing. Live sends start at $1.99, one all-in price.

curl -X POST https://sendpaperplane.com/v1/orders \
  -H 'Content-Type: application/json' \
  -d '{
    "mail_class": "first_class",
    "sandbox": true,
    "text": "Dear Ms. Alvarez, ...",
    "to":   { "name": "Maria Alvarez", "line1": "1 Main St",
              "city": "Richmond", "state": "VA", "zip": "23220" },
    "from": { "name": "Alex Rivera", "line1": "12 Grove Ave",
              "city": "Richmond", "state": "VA", "zip": "23221" },
    "email": "alex@example.com"
  }'

All integrations · API docs

Common questions

Do I need to generate my own invoice PDF?

No — Stripe’s invoice object already includes a hosted PDF link; pass that straight into pdf_url and paperplane prints exactly what it shows.

Can this mail receipts instead of invoices?

Yes — trigger on "Charge Succeeded" or "Payment Intent Succeeded" instead, and use the charge’s receipt URL the same way.

What if a customer has no mailing address on file in Stripe?

Address verification runs before payment on every order; a missing or bad address returns a structured error instead of mailing, so the automation can skip that customer or fall back to email.