#BilalSaeedAlam
1 messages · Page 1 of 1 (latest)
Hello there. What's your question?
We only help developers with API related questions in here
If it's unrelated to that, you'll need to go to Stripe Support: https://support.stripe.com/contact/email
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.
Basically when i charge customer and goto dashboard panel to send receipt, then i receive receipt lieke this
Receipt from acct_1N68wvJIXd7Tyawp
Can we change it to some company name
?
Yes i have charged through payment intent, but email not sent automatically but i sent this mail manually through dashboard
I am using ACH and CARD future payment procedures
Using this PI object:
const paymentIntent = await stripe.paymentIntents.create({
amount: 100,
currency: "usd",
// automatic_payment_methods: { enabled: true },
customer: data[0].customer,
payment_method: data[0].id,
payment_method_types: ["us_bank_account"],
off_session: true,
confirm: true,
receipt_email: customer ? customer.email : "",
description:
"3% of your purchase goes toward our ocean cleanup effort!",
});
Gotcha. I'm not sure off-hand if the title is customizable like you want
AFAIK it's not doable via the api, but there may be another way
I'd ask our support team: https://support.stripe.com
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.
Alright thank you