1

I send mainly plaintext emails from inside FogBugz and sometimes I use the fact that it's plain text for some basic formatting. This gets lost when viewing the case again later as the email text is displayed in a proportional font. It would be great if the email could be displayed "as sent" (or indeed, "as received"). I'm guessing that all you'd need to do is enclose it in a <pre> and style a little. Easy!

flag

1 Answer

1

Two things really help:

  • the Code Snippets plugin (along with a snippet [code][[text]][/code])

  • a customization to use a non-proportional font

Like this:

name:          Fixed-width Fonts
description:   Use fixed-width fonts
author:        Michel de Ruiter
version:       1.0.0.0

css:
#bugviewContainer .bugevents .bugevent .body, div.emailBody {
  font-family: "Lucida Console", Monospace;
}

See also this 'answer'.

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.