github / email_reply_parser

Small library to parse plain text email content
MIT License
660 stars 154 forks source link

issue in parsing email reply for html content #79

Open ksthakur opened 2 years ago

ksthakur commented 2 years ago

below is code, I am extracting the mail body using mailparser which is text/html content and trying to get latest reply using EmailReplyParser.parse_reply, but it is extracting complete message not the reply only

mail = mailparser.parse_from_bytes(file.read() reply_text = EmailReplyParser.parse_reply(mail.text_html[0])

it is working file for text/plain content mail = mailparser.parse_from_bytes(file.read() reply_text = EmailReplyParser.parse_reply(mail.text_plIn[0])

any suggestions are appreciated, thanks in adavnce

davidnagli commented 1 year ago

Don't know if you solved this yet, but I had the same issue and I figured out why:

https://github.com/willdurand/EmailReplyParser/issues/91