Is their a way to either code server side or client side to check new incoming replies to emails and register them in some way? I read upon using something called Reverse Ajax is this possibly the solution I should look into to code what I want.
Also another question is how do you keep track of email conversations? I took at a look at the hidden headers for emails sent and received and it seems that they carry a unique message id which could possibly be used to solve the problem I have.
Thanks 🙂
Split that into two tasks:
For 1: messages have a
Message-IDheader and optionally aReferencesand anIn-Reply-Toheader that allow you to put together conversations. Note that you also have to keep track of sent messages for that to work (because a reply that you receive has theMessage-IDof a message that you sent in theIn-Reply-Toheader).For 2: the umbrella term seems to be Comet