vote up 0 vote down star
1

How can I fetch/download all email (preferably as MailMessage) via POP3 from a mailserver using C#?

flag

68% accept rate

3 Answers

vote up 0 vote down

.NET BCL does not have POP3 client class built in so you'd have to search for a third-party one. See this for a list of those.

link|flag
vote up 0 vote down

This is a project I found on Web.

CodeProject

link|flag
I used the one on which this project was based, and it was good. +1 for you. – Randolph Potter Oct 8 at 14:44
It does not parse the messages. – Pawel Lesnikowski Oct 9 at 21:18
vote up 1 vote down

You can try Mail.dll mail component, it has SSL support, unicode, and multi-national email support.

Pop3 pop3 = new Pop3();
pop3.Connect("mail.host.com");           // Connect to server 

pop3.User = "lesnikowski";               // Set user name and password
pop3.Password = "password";
pop3.Login();                            // Login

pop3.GetAccountStat();                   // Get account statistics

SimpleMailMessageBuilder builder = new SimpleMailMessageBuilder();

for(int i = 1; i <= pop3.MessageCount; i++)
{
    // Receive mail
    ISimpleMailMessage simpleMail = builder.CreateFromEml(pop3.GetMessage(i));

    // Write out received mail message
    Console.WriteLine( simpleMail.Subject );
    Console.WriteLine( simpleMail.TextDataString );
}
pop3.Close(true);

You can download it here: http://www.lesnikowski.com/mail.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.