Click here to Skip to main content
15,881,833 members
Articles / Programming Languages / C#
Article

Using POP3 with C# to download and parse your mail.

Rate me:
Please Sign up or sign in to vote.
3.48/5 (21 votes)
17 Nov 2002CPOL 229.4K   13.1K   84   37
Using this class in your C# application you can manage your mailbox and download and parse your messages.

Introduction

This article explains a simple way to add mail support in your application. Just use the classes:

POP3class methods:

  • C#
    string DoConnect(String pop3host,int port, String user, String 
    pwd)
  • string GetStat()
  • string GetList()
  • string GetList(int num)
  • string Retr(int num)
  • string Dele(int num)
  • string Rset()
  • string Quit()
  • string GetTop(int num)
  • string GetTop(int num_mess, int num_lines)
  • string GetUidl()
  • string GetUidl(int num)
  • string GetNoop()

MessageClass methods:

  • string GetFrom(string messTop)
  • string GetDate(string messTop)
  • string GetMessID(string messTop)
  • string GetTo(string messTop)
  • string GetSubject(string messTop)
  • string GetBody(string AllMessage)

Using the code

The following sample illustrates how to use the classes:

C#
POP3class pop3;
pop3 = new POP3class();
pop3.DoConnect("your.mail.server",110,"username","password");
pop3.GetStat();
// and if we have mail:
MessageClass msg;
msg = new MessageClass();
string sMessageTop = msg.GetTop(1);
//OK, message is well, lets download it.
string sAllMessage = msg.Retr(1);
msg.GetBody(sAllMessage);

That's all.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer
Russian Federation Russian Federation
Now in Moscow.

Comments and Discussions

 
QuestionMail Parse Pin
jass3917-Jul-17 22:25
jass3917-Jul-17 22:25 
QuestionGood News !! Visual Studio now has support for POP3, SMTP, IMAP, etc Pin
Tino Fourie21-Feb-14 9:59
Tino Fourie21-Feb-14 9:59 
Questionmsg.GetTop() Pin
brob199013-Nov-13 14:15
brob199013-Nov-13 14:15 
GeneralMy vote of 5 Pin
Amir Mohammad Nasrollahi29-Jul-13 21:49
professionalAmir Mohammad Nasrollahi29-Jul-13 21:49 
GeneralMy vote of 5 Pin
reldridge10-Feb-12 10:49
reldridge10-Feb-12 10:49 
GeneralGreat Job Pin
Lokesh_193744414-Sep-10 17:46
Lokesh_193744414-Sep-10 17:46 
GeneralCan't run with Gmail Pin
anki1236-Jul-09 22:51
anki1236-Jul-09 22:51 
GeneralRe: Can't run with Gmail Pin
1234anand31-Aug-09 23:13
1234anand31-Aug-09 23:13 
GeneralGmail Account Pin
Ariel Piñeiro26-Jun-09 7:14
Ariel Piñeiro26-Jun-09 7:14 
Generalnice class... Pin
lamarez28-Dec-08 12:10
lamarez28-Dec-08 12:10 
Generalits saying -ERR System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it. plz help Pin
Member 27193538-Dec-08 9:07
Member 27193538-Dec-08 9:07 
GeneralGetTop is not a function in Mesaage Class. Pin
anjani_jan194-Jul-08 0:46
anjani_jan194-Jul-08 0:46 
GeneralRe: GetTop is not a function in Mesaage Class. Pin
JackieHoffman18-Nov-08 14:09
JackieHoffman18-Nov-08 14:09 
Generalhelp !!!!!!!!!!!!!!!! Pin
Horra1-Mar-08 8:31
Horra1-Mar-08 8:31 
GeneralIam getting this error Input string was not in a correct format And login is ok but iam not getting the mails ..plz help me Pin
anjaneya75-Feb-08 0:57
anjaneya75-Feb-08 0:57 
GeneralHelp me!!! Pin
saobangtn2231-Aug-07 17:15
saobangtn2231-Aug-07 17:15 
GeneralRe: Help me!!! Pin
he2he29-Oct-07 4:23
he2he29-Oct-07 4:23 
GeneralSTD3 violation Pin
mastdk21-Sep-06 3:36
mastdk21-Sep-06 3:36 
GeneralNice one Pin
Gavin Roberts11-Oct-05 21:56
Gavin Roberts11-Oct-05 21:56 
GeneralSSL Support Pin
NihalChand123410-Oct-05 19:06
NihalChand123410-Oct-05 19:06 
GeneralRe: SSL Support Pin
novice__geek14-Mar-09 19:04
novice__geek14-Mar-09 19:04 
GeneralError in GetMail (MailPOP3.cs) Pin
Member 8896107-Jul-04 4:40
Member 8896107-Jul-04 4:40 
QuestionThere is the function GetBody? Pin
Albert Pascual6-Aug-03 5:06
sitebuilderAlbert Pascual6-Aug-03 5:06 
Generali can't it Pin
oeurun6-Aug-03 2:11
oeurun6-Aug-03 2:11 
GeneralI can not seem to get the email headers, etc Pin
Jediman6-Jul-03 14:24
Jediman6-Jul-03 14:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.