You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we set receipt_email on the payment_intent, Stripe will email a receipt to users on payment success.
Unfortunately our token isn't generated yet when this happens, but fortunately we can work around this by not setting the recepit_email field until after we've generated the token.
Create payment
Store email in metadata
Do not set receipt_email yet!!
Consider setting statement_descriptor and statement_descriptor_suffix?
Payment success
Update payment description with token
Set receipt_email using value stored earlier in metadata
Consider setting token in metadata too?
The text was updated successfully, but these errors were encountered:
Since we set
receipt_email
on thepayment_intent
, Stripe will email a receipt to users on payment success.Unfortunately our token isn't generated yet when this happens, but fortunately we can work around this by not setting the
recepit_email
field until after we've generated the token.metadata
receipt_email
yet!!statement_descriptor
andstatement_descriptor_suffix
?description
with tokenreceipt_email
using value stored earlier inmetadata
metadata
too?The text was updated successfully, but these errors were encountered: