fetching pop3 email?

J. Scott Elblein

Well-known member
Joined
Dec 14, 2006
Messages
166
Location
Chicago
Programming Experience
10+
I've looked everywhere, does anyone have any simple code to fetch email from a pop3 server?

mucho appreciado if you do! :)
 
.Net framework don't have POP3 implementations, so you have to write this yourself with a TcpClient according to the RFC1939 protocol specification (or find third-party libraries). See also POP overview at Wiki.
 
Back
Top