Description
Hey @mdecimus!
First of all, thank you for all your work on the AMAZING email crates you've contributed to the rust ecosystem. I rely on them so frequently!
While sending replies, email clients frequently append older messages at the bottom of the text or html body. They use non-standard formats to delineate the new reply text and the older messages.
Currently when I parse the text or html body using the mail-parser crate it includes the appended context. I'd like to parse just the new content i.e the visible part of the reply.
It's a difficult problem to solve but I've found helpful libraries in other languages. Before complicating my setup I wanted to check if this was possible with mail-parser or within the rust ecosystem. Here's what I found:
- https://github.com/willdurand/EmailReplyParser [PHP]
- https://github.com/github/email_reply_parser [Ruby]
- https://github.com/t2bot/node-email-reply-parser [JS]
Thank you for your help :)