vote up 1 vote down star

We have a vendor that sends CSV files as email attachments. These CSV files contain statuses that are imported into our application. I'm trying to automate the process end-to-end, but it currently depends on someone opening an email, saving the attachment to a server share, so the application can use the file.

Since I cannot convince the vendor to change their process, such as offering an FTP location or a Web Service, I'm stuck with trying to automate the existing process.

Does anyone know of a way to programmatically open an email from a POP3 account and extract an attachment? The preferred solution would reside on a Windows 2003 server, be written VB.NET and secure. The application can reside on the same server as the POP3 server, for example, we could setup the free POP3 server that comes with Windows Server and pull against the mail file stored on the file system.

BTW, we are willing to pay for an off-the-shelf solution, if one exists.

Note: I did look at this question but the answer points to a CodeProject solution that doesn't deal with attachments.

flag

62% accept rate

2 Answers

vote up 3 vote down check

possible duplication of http://stackoverflow.com/questions/44383/reading-email-using-pop3-in-c

Atleast, there's a shed load of suggestions there that you may find useful

link|flag
Almost … I was looking for a prepackaged solution with built-in security and written in VB.NET. If I don't receive another answer, I'll give you accept this answer. – Josh Jul 21 at 19:48
vote up 2 vote down

Try Mail.dll email component, it's very affordable, supports attachments national characters and is easy to use, it also supports SSL:

    Dim pop3 As New Pop3
    pop3.Connect("mail.server.com") 

    pop3.User = "user"               
    pop3.Password = "password"
    pop3.Login()                            

    pop3.GetAccountStat()                   

    Dim builder As New SimpleMailMessageBuilder()

    For i As Integer = 1 To pop3.MessageCount
        'Receive mail
        Dim mail As ISimpleMailMessage
        mail = builder.CreateFromEml(pop3.GetMessage(i))

        'Write out received message
        Console.WriteLine(mail.Subject)

        'Here you can use mail.Attachmets collection
        For Each attachment As MimeData In mail.Attachments
            Console.WriteLine(attachment.FileName)
            attachment.Save("c:\" + attachment.FileName)
            ' you can also use attachment.Data here
        Next attachment

    Next

    pop3.Close(true)

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

link|flag
Looks like a nice solution. – Josh Oct 17 at 22:01

Your Answer

Get an OpenID
or

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