#yohana2211
1 messages · Page 1 of 1 (latest)
Hi
Could you please share more details?
I have integrated with Stripe JS, but after client pay .. not receiving a confirmation email
Can you share a PaymentIntent id ?
pi_3NSF8DLibZt8EYKW3O6NP3m1
Try specify receipt_email when creating the PaymentIntent:
https://stripe.com/docs/api/payment_intents/create#create_payment_intent-receipt_email
I did that on the server side when creating an intent .. but is not showing
Ah correct, I see it in the creation request req_ZqXdxEJHr45rfj let me check more..
When confirming the Payment, I'm seeing that receipt is being overrided by empty char: req_1RUtcdtVyFPD4b
Could you please share how are you confirming the payment(frontend) ?
ok
Between, you've received a receipt email on your email at Jul 10th 2023 8:14:29 am UTC
Wasn't that email that you are expecting actually ?
Hi! I'm taking over this thread.
You did change the receipt email from your code: https://dashboard.stripe.com/logs/req_1RUtcdtVyFPD4b
You can see receipt_email: "".
Yes .. I have set that on the server side ... Do you need me to set on fron JS as well?
What you are currently doing:
- Set it on the backend (correct)
- And then ovverride it with "" on the frontend (not correct)
To solve this, simply do not pass receipt_email on the frontend at all.
completely remove the line receipt_email from the frontend, since it's already set on the backend.
Yes