Reputation: 5212
I want to read mails from Gmail without deleting them while reading. However I want to have the option to delete a specific email.
Where do I begin?( I don't want to use others libraries - I want to start it from scratch)
Upvotes: 0
Views: 224
Reputation: 5231
If you want to start at the basics start by reading the rfcs
RFC 3501 for IMAP
RFC 1939 & 2449 for POP3
Upvotes: 0
Reputation: 13947
Per this about IMAP and this about POP, there is no built-in support for IMAP or POP in .Net. However, there are a plethora of free (and open-source) utilities you can use.
Upvotes: 1
Reputation: 23016
There is no .NET framework support for IMAP. You'll need to use some 3rd party component.
This question and related questions have a list of libraries and links. Accessing Imap in C#
Upvotes: 0