Alex K
Alex K

Reputation: 5212

Where do I begin to learn how to use pop3 and imap protocols with c#?

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

Answers (3)

Darryl Braaten
Darryl Braaten

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

Mark Avenius
Mark Avenius

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

Shoban
Shoban

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

Related Questions