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?

mjv
  • 73,152
  • 14
  • 113
  • 156
Arnab
  • 41
  • 1
  • 4

1 Answers1

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
  • 176,835
  • 32
  • 241
  • 292