#BilalSaeedAlam

1 messages · Page 1 of 1 (latest)

plain kiteBOT
median flax
#

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

supple mica
#

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

#

?

median flax
#

Is this for a payment intent?

#

Was payment initiated in a checkout session?

supple mica
#

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!",
});

median flax
#

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

supple mica
#

Alright thank you