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?
Asked
Active
Viewed 2,891 times
1 Answers
9
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.
Community
- 1
- 1
Pablo Santa Cruz
- 170,119
- 31
- 233
- 283