#thewirednomad
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- thewirednomad, 2 hours ago, 2 messages
Hi there, a discord thread will be closed if it's idle for a long time.
Can you tell me the question that you want to ask?
Ah the link does seem to work
What's the best way to go about customizing the success page like that
I still want it to have session_id=the-checkout-id
and how to send the customer a confirmation email? I just feel like I need to add some extra stuff to give them confidence that their payment was successful and that I'll follow up
ok thanks. I used that page before
I used that but I don't see the customer's name?
https://docs.stripe.com/api/checkout/sessions/object#checkout_session_object-customer you can retrieve the customer object from the checkout session and display its name in your page.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yep I see that
I guess the default code doesn't work perfectly.
the variable name I needed was "name"
oh
that is what it is. res.send(<html><body><h1>Thanks for your order, ${customer.name}!</h1></body></html>);
for some reason it didn't work
maybe I need to delete my success.html
so it stops using it