They allow to specify “billing email”, but only send notifications without PDF attached. I’m very disappointed!
Perhaps AGI really means “automatically get invoice” and we are close but not quite there yet.
I’m actullay getting close to stop using ChatGPT for this and switch to competition. How come every other service we use in the organization allows this except for ChatGPT.
Email receipts/invoices to account email address or even better a configurable billing email address
Ridiculous and absurd are the only 2 words that seem adequate for this.
Maybe OpenAI should just have this vibe coded… d’oh.
Wow, this alone is a good enough reason to cancel and switch to another AI provider. Embarrassing, to say the least.
When can we expect this to happen?
Codex would implement this in 5 minutes. Please, it’s so annoying!
A simple solution is to switch to Gemini or Claude
This is a needed feature - please add ASAP.
Just implement it already FFS
Make this happen please. Developers developers developers!
yes please, this feels like a year 2005 product without it.
Come on, this has to be a joke, right? Open for years and that many requests and still nothing happening?
Hello OpenAI team, Its been over 2 years now. Its a minor feature request but it would make a world of a difference for companies using ChatGPT Business/Enterprise. I cant possibly see why not?
ChatGPT is the only service I have currently where I’m not getting an email receipt. Wild xD
Small feature, high annoyance-factor.
This lack of feature stop our billing automation, this has to be a joke if you are OpenAI and having codex.
Just to be clear: the idea of emailing support@openai.com to request the latest invoice is not mine. I found it in this thread. I only built a small n8n workflow around that idea.
The workflow is very simple:
-
Once a month, n8n sends an email to support@openai.com asking for the latest invoice.
-
When the reply arrives, another n8n workflow parses the email body.
-
It extracts the Stripe invoice link and converts it into the direct PDF invoice URL.
-
n8n downloads the PDF and sends it to my accounting email address.
The useful part is the Stripe link conversion.
The link received in the email looks like this:
https://invoice.stripe.com/i/...
The direct PDF URL can be generated like this:
https://pay.stripe.com/invoice/.../pdf
In JavaScript, the basic logic is:
const [baseUrl, queryString] = invoiceUrl.split('?');
const pdfBaseUrl = baseUrl.replace(
'https://invoice.stripe.com/i/',
'https://pay.stripe.com/invoice/'
);
const pdfUrl = `${pdfBaseUrl}/pdf${queryString ? `?${queryString}` : ''}`;
Also, Link now sends an email for OpenAI purchases, so in theory that email could be used as a trigger too, instead of sending a monthly request first.
Important note: this workaround is for ChatGPT invoices.