#Caramello
1 messages ยท Page 1 of 1 (latest)
Hi there, Stripe will send email to customers upon successful payments. But Stripe won't send emails to merchants to notify successful payments.
I sell service subscription on my website, I just need to get email notification when somebody successfully complete a transaction through my payment page
You can use webhook to get notified about subscription related events (https://stripe.com/docs/billing/subscriptions/webhooks)
If you really want emails. You can listen to related webhook events and send an email to yourself from your webhook handling code.
Alright, thank you so much ๐
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
this is exactly what I meant
but I just wanted to add another email address to get notified with me ๐
Ah, sorry I missed this one.
Perhaps you can check with your email provider and see if they provide an auto forwarding service, so the Stripe emails sent to your email address can be automatically forwarded to another email address
Perfect!
thank you so much Jack
I have one last question, I have published my secret key on an extension that might be suspicious, does this have any threats on me? how to unsend it/change my generated key?
Yes, you can roll your secret key through Dashboard https://stripe.com/docs/keys#rolling-keys
Welcome!