#Talon-3DS-email
1 messages · Page 1 of 1 (latest)
I am talking about these emails
3ds payments for subscription
in case the payment requires 3ds Stripe will send the customer an email to confirm the payment
can i check if such email was sent to the customer
Thanks for the clarification, unfortunately it does not look like there is a way to check that
in_1IbC5hIFBve6OJmFQARF0s1R
was this subscription failed because it required 3ds?
and is it possible to send this customer an email to confirm the transaction?
You can always email your customer a link to the hosted invoice page to complete payment: https://stripe.com/docs/api/invoices/object#invoice_object-hosted_invoice_url
For general help with specific payments and customer interactions please contact out support team: https://support.stripe.com/contact
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.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
can stripe send this customer a link to stripe hosted page?
We have enable the settings for autoemail but this is old case and we will like to trigger the email again
No, you should either send the invoice email again (eg using dashboard or /send) or you can do a custom email with the payment page
in_1IbC5hIFBve6OJmFQARF0s1R
and after this fail payment, rest of the payment went into Draft mode
Ok for help with this I'd ask you to reach out to our support team: https://support.stripe.com/contact
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.
they're best equipped to look into individual payment issues and account configurations
Thank you
last question:
What does this line do to my subscription
$sData['billing_cycle_anchor'] = $this->getStripeTime()->endOfMonth()->timestamp;
does it somehow effect the first month payment?
and yes it is connected with creation request
Yes, it might for example increase the initial payment to account for the prorated period from now until the anchor you set.
i see and the above code, will try to charge the customer at end of each month. and for the current month it will calculate the number of days left till the end of the month and charge accordingly?