Reading Email using Pop3 in C# [closed]

2019-01-01 00:43发布

I am looking for a method of reading emails using Pop3 in C# 2.0. Currently, I am using code found in CodeProject. However, this solution is less than ideal. The biggest problem is that it doesn't support emails written in unicode.

标签: c# unicode pop3
8条回答
永恒的永恒
2楼-- · 2019-01-01 01:09

My open source application BugTracker.NET includes a POP3 client that can parse MIME. Both the POP3 code and the MIME code are from other authors, but you can see how it all fits together in my app.

For the MIME parsing, I use http://anmar.eu.org/projects/sharpmimetools/.

See the file POP3Main.cs, POP3Client.cs, and insert_bug.aspx

查看更多
还给你的自由
3楼-- · 2019-01-01 01:11

I've successfully used OpenPop.NET to access emails via POP3.

查看更多
登录 后发表回答