2

I want to get count of unread emails in yahoo and hotmail inbox, for gmail there is a simple way to do this i.e. via Gmail inbox feed. My question is how to get unread msgs count in hotmail and yahoo? Please tell me all alternatives.

For now I only want to get count of unread, no need to get whole msgs. I require a C# solution.

Imran Shafqat
  • 508
  • 1
  • 9
  • 23

2 Answers2

1

for mail accouts with POP server, you can use a pop implementation like http://hpop.sourceforge.net/

user287107
  • 9,286
  • 1
  • 31
  • 47
-2

use Gmail API:
https://developers.google.com/google-apps/gmail/

Here is a wrapper for C#:
http://sourceforge.net/projects/gmail-api/

As I remember, in Gmail API you have an method to return an array of unread messages.

whoah
  • 4,363
  • 10
  • 51
  • 81