vote up 2 vote down star

Is there any C# API for this task? Any suggestions?

flag

3 Answers

vote up 1 vote down check

Here is a sample project that may provide what you need.

link|flag
not much about grabbing the attachment ;-) – MarlonRibunal Apr 30 at 20:34
vote up 2 vote down

You can try Mail.dll mail component:

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

    pop3.Connect("mail.host.com");           // Connect to server and login
    pop3.Login();
    pop3.GetAccountStat();                   // Get account statistics

    SimpleMailMessageBuilder builder = new SimpleMailMessageBuilder();

    for(int i = 1; i<=pop3.MessageCount; i++)
    {
          // Receive an email
          ISimpleMailMessage mail = builder.CreateFromEml(pop3.GetMessage(i));
          Console.WriteLine( mail.Subject );

          foreach (MimeData mime in mail.Attachments)
          {
              mime.Save("c:\\" + mime.FileName);
          }
    }
    pop3.Close(false);

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

link|flag
vote up 0 vote down

I've used /n Software in the past with success. Not free, but hey, you get to blame someone else if it doesn't work! (in other words, you get tech support from the company)

They have a free trial as well.

link|flag

Your Answer

Get an OpenID
or

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