#SCIF

1 messages · Page 1 of 1 (latest)

fervent vineBOT
sharp dirge
frozen ferry
#

I saw this option but I'm curious about UX. My integration works like:

  1. customer input CC details and coupon code
  2. FE sends those details to BE
  3. BE creates a subscription on Stripe and returns client_secret to FE
  4. FE triggers stripe.confirmPayment() and customer's CC details are validated, 3ds check triggered, etc
  5. Once customer confirmed the payment, it's redirected to thank-you page.

Does it mean that changing collection_method to send_invoice will lead to sending the invoice letter to the customer's email after #3 of my flow? Considering the fact that all 5 steps are happening within a short time (5-20 seconds), customer will note the invoice after the payment actually came through?

sharp dirge
#

That is correct, after the subscription is created with that collection method, an email will be sent.

frozen ferry
#

I assume that Stripe does not send any email in test mode. Am I correct?