#MartinD
1 messages · Page 1 of 1 (latest)
hi! hmm, not really with anything built into Stripe (https://stripe.com/docs/receipts#customizing-receipts)
you'd probably want to listen to webhooks on your backend server and directly email the customer with what you need
Ahh I see, I really didn't want to include any backend server for this but it might be time to rethink the oversimplicity i have created so far 😄
Thanks for your answer
you can also redirect the user to your site after paying (https://stripe.com/docs/payments/payment-links?pricing-model=standard#change-confirmation-behavior)
the issue there is you won't know who they are since it would be the same link for everyone, so it ultimately requires some code, to me the easiest way would be to listen to a webhook for the successful checkout.session.completed event and contact the user as part of that https://stripe.com/docs/payments/checkout/fulfill-orders . I think stuff like Zapier has hooks/actions for this too