Integrating POP3 client functionality into a C# application?

前端 未结 15 1490
忘掉有多难
忘掉有多难 2020-12-07 09:39

I have a web application that requires a server based component to periodically access POP3 email boxes and retrieve emails. The service then needs to process the emails whi

15条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-07 10:16

    I made my own Mime parser and added it to CodePlex because I kept running into unhandled exceptions with the other ones when it came to strange encodings og weird combinations of attachments. The pop3 client implementation is crude, just made for testing purposes, but handles that ok. The Mime parser part populates the standard MailMessage object, so that you can easily forward it at it is. I can expand/improve it on request, but for now it does the job ok for my needs. Feel free to check it out.

    http://www.codeplex.com/mimeParser

提交回复
热议问题