#matrix-2t_code
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/1379271623760281651
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- matrix-2t_code, 8 hours ago, 3 messages
hello! Stripe won't send the invoice via email upon finalization because you have auto_advance=false , you'll need to manually send the Invoice via the API like what you've done for in_1RRREzC2f17SN1tpDqQ0Jwwl. If you want Stripe to handle finalization, sending of invoices for you, you'll need to set auto_advance=true when creating the invoice. This guide might be helpful : https://docs.stripe.com/invoicing/integration/automatic-advancement-collection
really appreciate it Alex. I wil give it a try
Hi Alex, I changed auto_advance to true but the invoice wasn't sent via email. I'm currently in test mode and the invoice number is in_1RVkWFJ2kSxn1vZ11SJb85k3. Could you please assist?
I see an invoice.sent event for that invoice. Were you expecting it to send to your email address? I'd suggest not relying on it sending on test mode, and instead looking if there's an invoice.sent event. Typically, most stuff in test mode doesn't actually send an email. You'll want to manually send it via the Dashboard if you want to see how the email looks like
Got it. I saw the invoice.sent event too.
Also, note that Stripe does everything to drive the invoice towards payment—including automatically finalizing draft invoices after one hour. So it does take time for Stripe to automatically do it.
i see. thanks a lot