52

5

we get a number of emails from clients that include pictures embedded within the the email. They generally show

i did this

[picture]

then i did this [picture]

is there a way to get fogbugz to keep the pictures in line with the text so that the entire story make sense to the reader of the support email.

at the moment, they just fall to the end in no particular order.

Using fogbugz 7.1.8 on OSX server

See also inline display for image in multipart/mixed messages.

Fog Creek Case FC2010299

flag

6 Answers

2

FogBugz 8.3 does currently support writing HTML emails. At the moment, however, it does not support displaying incoming HTML emails. We plan to support this in the near future. Up-vote the question above to show your support. If your primary need is for images to be shown inline, take a look at this new plugin.

link|flag
I'm upvoting this request in hopes of getting support for incoming HTML e-mails, but for reasons unrelated to images. Often we get people responding back to e-mails sent from Fogbugz where they 'inline' their response into the body of the original e-mail using different color fonts to indicate where they added text. We really need to be able to preserve that. – JohnFx Sep 22 at 15:52
I'm also upvoting this for the same reason!! – Giulia Nov 21 at 11:24
1

Okay. I've got a good hack to get around this issue until FogCreek implements this in a future version of FogBugz. It involves modifying the source code so it is a no-go for FBOD, but I'll post it anyway for anyone that might find it useful.

For those of you willing to live on the edge, here is how to "fix" your FogBugz installation so that the view-source option under the reply menu for an e-mail will open the original e-mail in whatever mail client you have configured displaying all formatting from RTF or HTML e-mails including images.

Note: In this tweak I didn't go as far as changing the wording on the menu option to reflect the changed behavior. Usually with source code mods I try to change the bare minimum I can get away with to achieve the desired purpose. If you really need to change the label it is in the dlgBugEditing.was file at line 1565 (in my install).

alt text

!!!! USE AT YOUR OWN RISK !!!!

Danger! Danger! Danger!
This solution requires editing the source code of FogBugz. The right way to do this under normal circumstances would be to use the extensive API and plugin framework, but as far as I can tell there isn't an API exposed that makes for a clean way to address this customization. Source code mods, are a last ditch option.


Caveats

  • Although the change seems pretty benign. I don't guarantee that this won't break something else in FogBugz.
  • Understandibly, Fog Creek might not be willing to fully support (or support at all) hacked versions of their software or issues this may cause.
  • Whenever you install upgrades to FB this fix may be overwritten and need to be applied again.

If you have read the above and you are stil willing to accept the potential downsides of running a tweaked FogBugz install, here is how you do it.

Instructions
(1) Backup your FogBugz program directory before you start.

(2) Open the file your-fogbugz-directory\src-Website\download2.was in the text editor of your choice.

(3) Find these lines and modify them as shown below.

'replaced version
'Response.ContentType = "text/plain"
'Response.AddHeader "Content-Disposition", "inline; filename=message.txt"

'new version
Response.ContentType = "message/rfc822"
Response.AddHeader "Content-Disposition", "inline; filename=message.eml"

Note: In my install it was lines 95-96, but it may vary depending on your FB version.

(4) Stop IIS on the machine and the maintenance service.
(5) Rebuild the FogBugz web site.

link|flag
That View Autosort Clue link looks interesting! How does it work? – Michel de Ruiter Sep 23 at 7:13
1 
@Michel de Ruiter - That's built in FogBugz functionality. I never noticed it before answering this question either. It seems to show a run down of how the inbox autosorter feature figured out how to categorize the case. – JohnFx Sep 23 at 21:36
0

This is a show stopper for us... we want to move to FB OnDemand, but can't without this feature! :)

We have clients that send us email newsletters and we need to be able to see the HTML version...

They also copy/paste text from their website with edits they want made marked up with colors and such and we can't get it in our ticket.

If nothing else, if FB could attach the HTML version of the email, that would work for us! :)

Thanks! Patrick Steil http://www.ChurchBuzz.org Church Website Optimization

link|flag
You can open the original e-mail with View Source, then Save as something.eml. – Michel de Ruiter Aug 1 at 7:55
+1 for attaching the e-mail to the case. – JohnFx Sep 22 at 15:53
0

We need to dsiplay HTML incoming e-mails too, please take this new feature into the required consideration for the future versions. It is very important for us. We have also try to use the fix written above but without success.

link|flag
0

+1 - not to be a smart ass, but can't believe this feature hasn't been implemented yet. We use FogBugz as our HelpDesk software and it's annoying as hell when employees/customer send us emails with tables or text they're emphasizing in bold/highlight, etc. and we have to ask them to resend because it doesn't come through correctly.

link|flag
We are waiting this functionality too!! And we are in the same situation... it's embarrassing when we have to ask them to resend because it doesn't come through correctly... in 2012!! – Giulia Fabbri Feb 22 at 8:31
0

Any ideas when this request will be addressed? It seems like we have not seen any robust feature changes from the FogBugz team in some time.

link|flag

Your Answer

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