#sarita_21302
1 messages · Page 1 of 1 (latest)
Hello sarita_21302, 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.
• https://discord.com/channels/841573134531821608/1163991225838354473, 1 days ago, 34 messages
• https://discord.com/channels/841573134531821608/1163709087318548480, 2 days ago, 18 messages
• https://discord.com/channels/841573134531821608/1163636672114737223, 2 days ago, 8 messages
• https://discord.com/channels/841573134531821608/1163350078820466728, 3 days ago, 21 messages
• https://discord.com/channels/841573134531821608/1162159964849197077, 6 days ago, 24 messages
• https://discord.com/channels/841573134531821608/1162020994337230898, 7 days ago, 17 messages
• https://discord.com/channels/841573134531821608/1161949945306288179, 7 days ago, 28 messages
• https://discord.com/channels/841573134531821608/1161903518953771038, 7 days ago, 6 messages
You probably would want to leverage metadata instead
metadata in charges ?
This is what I'm using currently
//update charges to trigger email
$stripe->charges->update(
$charge_id,
['receipt_email' => $email,
'description' => $name]
);
//update paymentIntent to display the same info on stripe dashboard
$stripe->paymentIntents->update(
$payment_intent,
['receipt_email' => $email,
'description' => $name,
]
);
On PaymentIntent also works
ok, thanks.