#connie_docs
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1262454048041205773
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐
I'm not sure I follow. Paying an Invoice via the send_invoice options is not paid out of band. That means the payment didn't happen on Stripe at all.
Unfortunately there isn't a setting you can adjust to only send receipts to a subset of your customers. You can achieve this functionality by turning off successful payment receipts in the Dashboard but then updating each charge for the charge_automatically Invoices by setting the receipt_email property. https://docs.stripe.com/api/charges/update#update_charge-receipt_email
Updating that value, even for a Charge that has been paid, will send a new email receipt.
Ah to clarify, I meant that for our customers whose collection_methods are set to 'send_invoice', they will pay their invoices outside of Stripe. So I was wondering if receipts are sent out for these types of invoices.
Anyway, I'll update my code according to your suggestion! This is the only question I had for today. Thank you!