I'm handling incoming mails with ActionMailer::receive. It's working great, but I'd like to strip out the quoted reply from the email. I wrote some regexp thing to do it for the standard ascii mail where it puts '>' in front of the quoted text, but people who use html mail seem to have a multitude of different ways of quoting the original mail in their replies.
I can parse these out as I find new ones, but I was wondering if something was already built into TMail or ActionMailer to do this. I looked through some of the TMail source and couldn't find anything.
Thanks.
patrick