Integrating POP3 client functionality into a C# application?

前端 未结 15 1446
忘掉有多难
忘掉有多难 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:27

    There are several POP3 client implementations around at codeproject.com. I have not evaluated them, but maybe you can find what you need there. If not, I can say that POP3 is quite a simple protocol. You can even read your POP3 box with telnet if you know 4-5 commands.

    You actually just need this commands and maybe some base64 decoding for attachments. That's it.

提交回复
热议问题