.NET library for processing HTML e-mails & stripping previous responses - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T23:53:24Z http://stackoverflow.com/feeds/question/87190 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/87190/net-library-for-processing-html-e-mails-stripping-previous-responses 3 .NET library for processing HTML e-mails & stripping previous responses Steve Eisner 2008-09-17T20:20:06Z 2008-11-14T16:46:08Z <p>Does anyone know of a .NET library that will process HTML e-mails and can be used to trim out the reply-chain? It needs to be able to accept HTML -or- text mails and then trim out everything but the actual response, removing the trail of messages that are not original content. I don't expect it to be able to handle responseswhen they're interleaved into the previous mail ("responses in-line") - that case can fail.</p> <p>We have a home-built one based on SgmlReader and a series of XSL transforms, but it requires constant maintenance to deal with new e-mail clients. I'd like to find one I can buy... :)</p> <p>Thanks, Steve</p> http://stackoverflow.com/questions/87190/net-library-for-processing-html-e-mails-stripping-previous-responses/90099#90099 1 Answer by Joseph Holsten for .NET library for processing HTML e-mails & stripping previous responses Joseph Holsten 2008-09-18T04:43:31Z 2008-09-18T04:43:31Z <p>This does not answer much of your question, but the W3C's <a href="http://www.w3.org/Tools/html2things.html" rel="nofollow">Converting HTML to Other Formats</a> has a section on converting HTML to text. I hope it helps someone develop a full answer to your question!</p> http://stackoverflow.com/questions/87190/net-library-for-processing-html-e-mails-stripping-previous-responses/158029#158029 1 Answer by Judah Himango for .NET library for processing HTML e-mails & stripping previous responses Judah Himango 2008-10-01T14:54:21Z 2008-10-01T14:54:21Z <p>One free and very useful library we've used for dealing with HTML, including malformed HTML, is the <a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">HtmlAgilityPack</a>.</p> <p>There is no StripOutPreviousResponses() function, but it may help you with your home-made one.</p>