#priyan-murugan_webhooks
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1311332026212945940
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there!
we usually don't send emails in test mode
are you talking about the email mentioned here? https://docs.stripe.com/payments/ach-direct-debit/accept-a-payment?web-or-mobile=web&payments-ui-type=stripe-hosted#accept-a-payment
When the deposits are expected to arrive, the customer receives an email with a link to confirm these amounts and verify the bank account with Stripe. After verification is complete, the payment begins processing.
have you tried the flow in test mode? maybe you can view the email when looking at the customer object in the dashboard.
I'm not seeing any email soma
cus_RIMZbKQiWhFAUB
this is customer id
can you please check it
okay can I get the email content what stripe will send them ?
not sure. you could try asking Stripe support about this: https://support.stripe.com/contact
what's your question?
while creating payment element and choose bank account option
its asking full name and email address how can I hide it ?
how are you accepting payments? Checkout Session, Payment Element, something else?
payment element
const paymentElement = elements.create('payment',
{
fields: {
billingDetails: {
address: {
country: 'never',
postalCode: 'never'
}
}
},
wallets: {
applePay: 'auto'
}
});
got it. I don't think you can disable these fields
can pass the value and make it read only ?
you can set some default values here: https://docs.stripe.com/js/elements_object/create_payment_element#payment_element_create-options-defaultValues
but no you cannot make them read only
thank you