tags:

views:

354

answers:

1

I want to make a gmail notifier in C#. I accessed Unread mail list by parsing Gmail atom feed. But i want to add a feature to my app so that user can directly mark any mail as read. Any one has any idea how to do that?

+7  A: 

You can use an IMAP LIBRARY to access GMAIL with C#. IMAP will support marking messages as read out of the box.

Here is a project implementing an IMAP client with C#. Here is a StackOverflow question addressing the issue of IMAP access with C#.

Hope it helps.

Pablo Santa Cruz
Thanx. I'll give it a try.
Arnab