50

Because this is not the kind of company where wiki's are accepted, we tend to do a lot of communication through outlook. Sending code snippets through it is painfull. Is there some way to get the markdown thing we have here, but in outlook?

Boris Callens
  • 90,659
  • 85
  • 207
  • 305

7 Answers7

46

For future visitors: https://github.com/mmanela/MarkdownOutlook

Per their wiki:

A simple plugin for Outlook 2013 which adds a button to the compose mail menu to enable Markdown mode. When enabled your email will be turned from Markdown syntax to html when sending.

  • Uses MarkdownSharp for the markdown conversion
  • Uses VSTO to integrate with Outlook
  • Uses an Installer Project to build an installer
Community
  • 1
  • 1
Mrchief
  • 75,126
  • 20
  • 142
  • 189
15

I haven't been able to find an editor BUT you can write your email where I'm typing now which will show you the result in the preview pane. (including code snippets)

You can then copy the result from the preview pane into outlook (I've tried thunderbird too and it works)

If at first your code doesnt render nicely (ie colour coded) then ensure you are editing in the 'Ask Question' editor (not in the Your Answer section) - this made a difference for me.

wal
  • 17,409
  • 8
  • 74
  • 109
9

Since Outlook uses Word as an email editor (Outlook 2007, Outlook 2003 can be configured to use Word) you could use the AutoCorrect feature to apply simple formatting to your email. __text__ will trigger italic and **bold** will trigger bold. List can be created automatically when typing - or 1.

Another option might be to run a VBA macro on sending the email which converts the Markdown formatting to (X)HTML.

Keith Pinson
  • 7,835
  • 7
  • 61
  • 104
Dirk Vollmar
  • 172,527
  • 53
  • 255
  • 316
5

I've taken to running Markdown Pro on my Mac and pasting the preview pane results into the message. Painful but workable.

There is a similar editor, MarkdownPad, for Windows, but I have not tried it.

Ralph
  • 31,584
  • 38
  • 145
  • 282
  • Looks promising. Download is blocked by corporate FW however, so it'll have to wait 'till later. – Boris Callens Jul 24 '12 at 11:38
  • 2
    MarkdownPad works well for Windows. And the solution isn't terribly inconvenient. But, it takes some effort to modify the default CSS to match fonts and sizing in Outlook so that they email *look and feel* flows. That is very nit-picky, but it's a reality if you care. – Mike Perrenoud Dec 17 '12 at 18:10
  • I'm here 11 years later still frustrated at outlook for not supporting markdown. But copying the preview pane from MacDown works for me. – mkeathley Jul 28 '23 at 20:33
5

If you use Thunderbird, then you can use the markdown-here extension.

lante
  • 7,192
  • 4
  • 37
  • 57
  • you can added directly in your browser as an extension an **M** icon will be added that enables markdown in your emails . https://markdown-here.com/get.html – A.HADDAD Aug 05 '18 at 14:38
2

My outlook 2007 works with basic markdown _italic_ and *bold* with no configuration.

Andrea Balducci
  • 2,834
  • 1
  • 21
  • 18
  • 2
    That's the most weird thing. It seems they fired the dev or scraped the team before they could finish implementing the full set of markdown. :) – Mrchief Jul 01 '13 at 17:11
  • 4
    Kids these days, with no collective memory for usenet conventions. ;^) – ruffin Jan 02 '14 at 15:36
0

I'm new to development on OS X, but -- I've been using the simple-but-it-works MarkdownLive for the same purpose. I think I've been using the free version of MarkdownPad on Windows, although I keep meaning to check out the MD functionality in WriteMonkey. Going forward, I almost certainly will just be using Sublime Text 2.

You might check out what Brett Terpstra is doing ... doubt he is running Outlook, but it might be a problem he has addressed all the same. I also want to look at this package of scripts for Marked

Hm. My work email is accessed through Outlook's web UI ... I think I smell a Chrome extension around here somewhere ...

brysmi
  • 51
  • 3