We have an internal .NET case management application that automatically creates a new case from an email. I want to be able to identify other emails that are related to the original email so we can prevent duplicate cases from being created.
I have observed that many, but not all, emails have a thread-index header that looks useful.
...
Duplicate of http://stackoverflow.com/questions/372449/header-in-gmail-for-thread-hinting
... when providing the same subject line doesn't work?
I'd like to send 2 emails and make them appear in one conversation. Sadly, the second one always starts a new conversation. How to avoid this?
Both mails are sent directly to my.address@gmail...
I am writing a BI application that needs to extract meta data from email conversation.
Namely given an email thread I wish to extract all the participants and the structure of the conversation. For example, given a conversation like this:
From: me
To: You
CC: someone
<Body>
From: You
To: Someone
CC: Someone else
<Body>
I want to e...