#binod - iDEAL
1 messages ยท Page 1 of 1 (latest)
I had conv. earlier, stripe subscriptions don't support iDeal payment right?
Unfortunately that is still the case
I'm looking
okay
The iDEAL payment method can currently only be used if the subscription is set to send_invoice instead of charge_automatically
We also highlight which payment methods work with which Stripe products here:
https://stripe.com/docs/payments/payment-methods/integration-options#payment-method-product-support
how does send_invoice work?
It requires the customer's email address and it sends them an email with the invoice and link to provide payment information.
okay, so they are redirected to stripe hosted payment page which is non-customizable right?
Correct. The emails can be customized though.
okay, is the email sent by stripe or send it from our side?
Stripe would send it. You can review these options here: https://dashboard.stripe.com/settings/billing/automatic
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
also, Does stripe sends email after successful payment?
They can. You can configure that here: https://dashboard.stripe.com/settings/emails
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I have enabled but not getting an email
const paymentIntent = await stripe.paymentIntents.create({ amount: payload.amount, currency: "eur", payment_method_types: ["card", "ideal"], });
We do not send emails in Test mode
For this particular payment, not subscription
Is this a live mode charge?
No, its test mode
Then you won't receive an email
can we customize the email>
Please review the Email settings. You can also preview what the email will look like there.
Actually this is the settings page you want for much of the customization:
https://dashboard.stripe.com/settings/branding
So, it's impossible or possible in custom membership? right now we are using express membership
So is this a Connect integration?
not sure, what you mean?
You said "custom membership". Stripe doesn't have memberships but we do have Stripe Connect with includes Custom and Express accounts.
yes, we are using Express right now
Hi ๐ jumping in as my teammate needs to step away.
Since you're working with Express accounts, any hosted flows will default to leveraging the branding of your platform. The only approach I can think of that might alter that is leveraging on_behalf_of:
https://stripe.com/docs/api/invoices/update#update_invoice-on_behalf_of
But that would be tricky to do since the invoices you're using will be generated by a Subscription rather than you creating them directly.
This talks a little more about what happens if you use on_behlaf_of
https://stripe.com/docs/invoicing/connect#on-behalf-of
yeah, the invoices would be created by subscription automatically, I don't think it would be helpful
??
Yeah, it would be quite tedious to set up a flow that would intercept each invoice for a subscription and adjust that parameter. Express and Custom accounts are intended for scenarios where your customers will interact primarily with your platform, and may not even be aware of the third-parties (the connected accounts) that are involved in the flow. This is why those accounts result in scenarios where your platform's branding is primarily used.
Standard accounts on the other hand, lend themselves to scenarios where your customers are interacting directly with your connected accounts. So when using these accounts, hosted flows inherit the branding settings from the connected accounts (including the name of the business that is displayed).
In that case, it should be possible with Express & Custom account right?
im confused
Let's take a step back, what is your overall goal here?
I want to have an customizeable transaction email. i.e. business name in success checkout
When I purchase from ABC store, I should get an email saying You purchased from ABC
We're not quite as familiar with the email functionality in this forum (we primarily focus on the API side of integrations) but I don't think that is possible for Express/Custom accounts. When using those types of accounts, your customers are essentially purchasing from you the platform, so the emails will contain your platform's name.
If you want your customers to feel like their interacting directly with your vendors, then Standard accounts sound like they'd be a better fit:
https://stripe.com/docs/connect/accounts#standard-accounts
Does the standard account have all the customizable options?
Can you elaborate?
like business name in invoice_email, subscription_success_email, checkout_success_email
dynamic business name basically
No, there is no scenario where you can dynamically provide a business name for each email generated. The emails pull business name from existing account information.
When working with Connect integrations, the business name is either pulled from the Platform account or from the Connected account.
okay, thanks!
Any time!
will ideal payment be available in subscription as well in near future?
I'm not sure whether there are plans to allow iDEAL payment methods to work directly with subscriptions, but there is currently a flow to convert iDEAL payments to SEPA payments so they can be reused:
https://stripe.com/docs/payments/ideal/set-up-payment?platform=web#submit-payment-method