How can I go about retrieving the names associated to a particular email (YahooMail).
For example, in YahooMail:
Message message = messages[i];
message.getFrom()[0].toString();
gives something that looks like:
From: Company Group <noreply@ke.companygroup.com>
Instead of FirstName SecondName LastName, which I saved the person as.
The rest of the code is at: JavaMail API - Checking Emails.