I have implemented an Exchange Transport agent in C#.NET by subclassing RoutingAgentFactory and RoutingAgent from the Microsoft.Exchange.Data.Transport.Routing namespace.
I have created a handler for the OnSubmittedMessage event which writes the data to a file directly from the stream returned from MailItem.GetMimeReadStream() without altering it any way. I am then able to open the vast majority of these files written to disk in any email client successfully.
There is however a problem with TNEF messages that have a HTML content. These message types occur when sending between users in the same routing group and they have the following headers.
Content-Type: application/ms-tnef; name="winmail.dat"
Content-Transfer-Encoding: binary
As it is TNEF I am attempting to open these files in Outlook 2007/2010. I also have an iPhone app for reading winmail.dat files. When I try to open the above message type after it has been written by my transport agent, the email opens, but the html is not rendered. Everything else about the message is good, the attachments are in tact, the sender, recipients, subject is all good, it's just the message body that isn't.
If I inspect the file I can see that part of the winmail.dat in the raw html and if I take this and add it to a .html file it displays correctly in my browser.
This only happens with HTML emails, if I send a RTF formatted email in the same way it opens fine after the transport agent writes it to disk. The Content-Type and Content-Transfer-Encoding is the same with the RTF as with the HTML.
I have tried this with both Outlook 2007 an Outlook 2010 and the results are identical.
I know that the winmail.dat is not corrupt for two reasons:
If the winmail.dat is corrupt Outlook will open the winmail.dat as an attachment to the email as do other none TNEF aware MUAs.
I have used Microsoft's own
Microsoft.Exchange.Data.ContentTypes.TnefandMicrosoft.Exchange.Data.Mimelibraries to parse the emails and have successfully obtained the html programmatically from this.
I have tried using the other events available in the transport agent too. The last of which to be fired is the OnCategorized event, but the message body is identical in all cases, the only differences being a couple of headers. The open in exactly the same manner in each handler.
The email displays fine when opened directly from the inbox of the recipient. I thought there may be a way of comparing the original received email to the one I wrote to disk to see what the difference is but Outlook only allows this through a registry fix for IMAP and POP, in which case the email is in standard MIME format and not TNEF encoded.
There doesn't seem to be any reliable way to convert TNEF messages to standard MIME messages, and it is not trivial to do so without a strong understanding of the TNEF format. Obviously exchange manages this when it sends externally but this functionality doesn't seem to be exposed in the API anywhere which is frustrating.
Any suggestions as to why Outlook is unable to open these messages would be very welcomed!