Home > Enterprise >  Email Thread Messages using JavaMail API Reading
Email Thread Messages using JavaMail API Reading

Time:08-24

How to identify that particular message is email thread and retrieving messages in that thread using JavaMail API?

for email

 A replies to B
   B replies to A
      A emails to B (Original Message)

This question is referenced to the same thread.

Email Thread Messages using JavaMail API

But Still could not find proper way of implementing this. have anyone succeeded in doing this. I know we need to have this "algorithm thread" implemented but how we could implement. as I am using JavaMail version 1.5.6.

CodePudding user response:

There is no proper way of doing that. Sometimes your server does not have compulsory extensions installed in it. for your issue you must have sort and thread extension installed in it.

Although you can use this link for reference. https://www.rfc-editor.org/rfc/rfc5256

If some more info you need just reply to my Answer.

  • Related