嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C# 基于POP协议的邮件接收程序
基于POP协议的C#邮件接收程序,能够接当然也就能够发,压缩包内含所需DLL控件的源代码,编译运行邮件客户端前,请先运行控件源文件,编译拷贝至邮件程序的目录中,程序界面写的有点粗糙,大家就将就将就,程序的重点...
.
├── C# 基于POP协议的邮件接收程序_PopMail.rar
└── codefans.net
└── PopMail
├── MIMEParser
│ ├── AssemblyInfo.cs
│ ├── MIME
│ │ ├── Attachment.cs
│ │ ├── Common.cs
│ │ ├── DecodeQP.cs
│ │ ├── Exceptions.cs
│ │ ├── MIMETypes.cs
│ │ ├── Message.cs
│ │ ├── QuotedCoding.cs
│ │ ├── TNEFAttachment.cs
│ │ ├── TNEFParser.cs
│ │ └── Utility.cs
│ ├── MIMEParser.csproj
│ └── MIMEParser.csproj.user
├── MailClient
│ ├── MailClient
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── MailClient.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── bin
│ │ └── Debug
│ │ ├── MIMEParser.dll
│ │ └── OpenPOP.dll
│ ├── MailClient.sln
│ └── MailClient.suo
└── OpenPOP
├── AssemblyInfo.cs
├── GPL.txt
├── LGPL.txt
├── OpenPOP.csproj
├── OpenPOP.csproj.user
├── POP3
│ ├── Common.cs
│ ├── Exceptions.cs
│ ├── MyMD5.cs
│ ├── POPClient.cs
│ └── Utility.cs
├── bin
│ ├── Debug
│ │ ├── MIMEParser.dll
│ │ ├── MIMEParser.pdb
│ │ ├── OpenPOP.dll
│ │ └── OpenPOP.pdb
│ └── Release
│ ├── MIMEParser.dll
│ └── OpenPOP.dll
├── changes.txt
└── todo.txt
14 directories, 46 files