Click here to Skip to main content
15,892,575 members
Articles / Programming Languages / Visual Basic

Implement POP3 and SMTP in .NET

Rate me:
Please Sign up or sign in to vote.
4.56/5 (45 votes)
4 Jan 2006CPOL 632.5K   9.3K   133  
Using socket to implement POP3 and SMTP protocol.
'History:
'2004.8.24  All features except HTML mail support has been finished.
'2004.9.15  All mail features supported except those descripted below.
'2004.9.17  A beta version is released on CSDN.NET,ver0.9.6.040917
'2004.11.22 Add support for UIDL in POP3 protocol, upgrade version to 0.99
'2005.12.1  Add comments to all the codes and use NDoc to make a help documents. Upgrade version to 1.0

'Unsupported features:
'IMAP4 protocol
'Hotmail HTTP protocol


Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
<Assembly: AssemblyTitle("QMail Client Class")> 
<Assembly: AssemblyDescription("POP3Client 0.9.8" & vbcrlf & _
                                "SMTPClient 0.9.3" & vbcrlf & _
                                "EMail 0.9.22" & vbcrlf & _
                                "MailAttachment 0.9.3")> 
<Assembly: AssemblyCompany("")> 
<Assembly: AssemblyProduct("")> 
<Assembly: AssemblyCopyright("Copyright 2004-2005 by Q")> 
<Assembly: AssemblyTrademark("")> 
<Assembly: CLSCompliant(True)> 

<Assembly: Guid("85BC1EA7-199D-49E8-AEA9-33C9D1179F4F")> 

<Assembly: AssemblyVersion("1.0.0.051222")> 

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions