C#下收发邮箱的功能,JMAIL与openpop

最近要做个邮件收发功能,所以在网上搜索资料。

搜索很多都是有关JMAIL组件的文章,但这个jmail.dll组件是商业版的,免费版的不支持POP3。如果是使用发邮件功能,是可以的。

但如果单单只要发邮件功能,使用C#自带的类就可以了。

JMAIL还要安装注册之后才可以使用,很不方便。


上网下载了个破解版的JMAIL 4.4。可以接收邮件了,但是又遇到了乱码的问题。继续百度查资料。

了解到要4.5才解决了这个问题,但是没有找到4.5版本的版。


最后了解到还有一个开源的c#项目可以接收邮件。

jmail是一个第三方邮件操作组件,通常位于web服务器端,和站点程序紧密配合来接收及提交邮件到邮件服务器的控件,让网站拥有发送邮件既接收邮件的功能。

JMAIL 官网下载地址: http://www.dimac.net/default2.asp?M=Products/MenuDOTNET.asp&P=Products/JMaildotnet/start.htm

JMAIL4.4破解版下载地址: http://download.csdn.net/detail/youaregoo/5905337



那个是Jmail的一个BUG,已经转了的,没有用啊。现在换用OpenPop了,问题都解决了,还是开源的哦~

OpenPop.NET是POP3客户端的一个开源实现和采用C#开发的MIME解析器。 

POP3 Client Features

  • Easy to use POP3 client
  • Support for plain TCP or TLS/SSL connections
  • Authentication methods supported
    • Plain
    • APOP
    • CRAM-MD5 (RFC 2195)
  • CAPA capabilities command supported (RFC 2449)

MIME Parsing Features

  • Preserves the MIME email hierarchy
  • Easy access to different MediaType parts of the email
  • Headers are parsed into strong types and are easy to examine
  • Includes robust decoders for
    • QuotedPrintable
    • Base64
    • EncodedWord
    • Continuation and encoding of header fields (RFC 2231)
  • Emails are fully persistable




你可能感兴趣的:(C#)