Hi,

I've had the idea to create an application that manages football matches played on FIFA10. The game has a built-in feature to send an email with the details of every (online) match you played. These details include the name of the opponent, the final result, possession, etc.

So, for my app to work, I need to be able to read these emails. As far as I can see, they are all from the same address: [email protected]. So would it be possible to only read emails that came from that address?

I've never done something like this before, but from google I know it's possible, and there are many different methods. Since I only need to read, never send, emails, and I need to be able to select an email on the address that it was sent from, can you suggest what method I should use?

Also, I definitely want a method that does not require Outlook to be installed.

Finally, I will need to parse the email so it would be nice if I can get the raw HTML, as the text is in tables and stuff.


I'll keep reading some stuff on google but frankly, there's so many different methods that I am getting lost pretty quickly. I don't want to spend ages on this project, so it would be nice if I could use the best method right away, instead of wasting time trying out different methods and figuring out which is the best...

Thanks!