#derekpankaew
1 messages · Page 1 of 1 (latest)
Hello! Yes, you can do both of these things using our API. Every Invoice has an invoice_pdf property you can use in your emails: https://stripe.com/docs/api/invoices/object#invoice_object-invoice_pdf
For the second one, you can listen for invoice.paid Events using a Webhook Endpoint and send emails when you get those.
Ohhh I see. Perfect, thank you!
Can Stripe send the email, or would we need to fetch the PDF and send it to the user ourselves?
If you want the full Invoice in the email you would need to send it. Stripe can send receipts, but they don't contain the entire Invoice.
Ah got it, thank you!