How to Send ChatGPT Output as an Outlook Email
ChatGPT writes in Markdown and Outlook never parses it, so a direct paste shows ** and ## in the compose window. Convert first, then paste as rich text.
Direct answer
ChatGPT, Claude, and Copilot answers are Markdown source. Outlook has no Markdown parser, so pasting the answer straight into the compose window leaves the asterisks and pound signs visible. Copy the answer, remove the AI framing lines, paste it into the converter, press Copy Rich, then paste into Outlook. The bold text, headings, bullets, and links arrive already formatted.
Open Markdown to Outlook converterSending to Gmail, Apple Mail, or a newsletter tool as well? The Markdown to Email converter covers the general email case. This tool targets Outlook only.
When to use this
- An AI assistant drafted an email that must go out from Outlook.
- A pasted ChatGPT answer shows literal ** and ## in the Outlook compose window.
- You send AI-assisted mail every day and want one repeatable step.
Steps
- Copy the answer from ChatGPT, Claude, or Copilot.
- Delete the framing: 'Here is a draft', subject-line labels in the body, and placeholders like [Your Name].
- Check every name, date, price, and figure against your own records.
- Paste the cleaned Markdown into the converter and press Copy Rich.
- Paste into Outlook, add your real signature, and read the message once before you send it.
Example conversion
Hi Rowan, Here is the summary from today's review: - **Budget**: approved at $48,000 for Q3 - **Owner**: Priya takes the migration workstream - **Risk**: the vendor SOC 2 report expires in November I will send the plan on Monday. Best, Alex
<p style="font-family:Calibri,'Segoe UI',Arial,sans-serif;font-size:14px;line-height:1.5;color:#242424;margin:10px 0;">Hi Rowan,</p> <p style="font-family:Calibri,'Segoe UI',Arial,sans-serif;font-size:14px;line-height:1.5;color:#242424;margin:10px 0;">Here is the summary from today's review:</p> <ul style="font-family:Calibri,'Segoe UI',Arial,sans-serif;font-size:14px;line-height:1.5;color:#242424;margin:10px 0;padding-left:22px;"><li style="margin:4px 0;"><strong>Budget</strong>: approved at $48,000 for Q3</li><li style="margin:4px 0;"><strong>Owner</strong>: Priya takes the migration workstream</li><li style="margin:4px 0;"><strong>Risk</strong>: the vendor SOC 2 report expires in November</li></ul> <p style="font-family:Calibri,'Segoe UI',Arial,sans-serif;font-size:14px;line-height:1.5;color:#242424;margin:10px 0;">I will send the plan on Monday.</p>
Common mistakes
- Do not use ChatGPT's copy button and paste straight into Outlook. That button copies Markdown source.
- Do not leave AI framing in the message. 'Certainly! Here is a professional email' is an obvious tell.
- Do not trust the model's numbers and dates. Verify each one before the mail leaves your outbox.
- Do not keep every bullet the model wrote. AI drafts pad lists, and a short email reads as more competent.
FAQ
- Why does a ChatGPT answer look broken when I paste it into Outlook?
- The chat window renders Markdown for you. The clipboard receives the raw source. Outlook has no Markdown parser, so it prints the ** and ## characters exactly as they arrived.
- Does Copilot inside Outlook solve this?
- Copilot drafts directly into the compose window as rich text, so its own drafts render. This guide covers the other case: an answer you generated somewhere else and want to reuse in Outlook.
- What exactly does Copy Rich put on the clipboard?
- Two flavours at once: inline-styled HTML as text/html, and your original Markdown as text/plain. Outlook reads the HTML flavour and inserts formatted content. Plain-text targets get the Markdown.
- Does this work for Claude and Gemini output too?
- Yes. Claude, Gemini, and Copilot all emit Markdown. The same flow applies: clean the draft, convert, copy rich, paste.
Related Outlook guides
Markdown Paste in Outlook Desktop vs Outlook on the Web
Neither Outlook desktop nor Outlook on the web parses Markdown. They differ in what HTML survives the paste: desktop uses Word's engine, web uses a browser engine.
How to Paste a Markdown Table Into Outlook
A pipe table pasted into Outlook stays a wall of pipes and dashes. Outlook needs a real HTML table with a border and padding inline on every cell.
How to Build an Outlook Signature From Markdown
Write the signature in Markdown, convert it to inline-styled HTML, then paste the rich text into the Outlook signature editor. Keep it short and skip layout CSS.
Why Outlook Strips Your Formatting
Outlook removes formatting for two separate reasons: it never parses Markdown, and Word's HTML filter discards style blocks, CSS classes, and shorthand properties.