Code Collection: Old code for retriving emails using POP3
Posted by: Al Pascual,
on 14 Jun 2008 |
View original | Bookmarked: 0 time(s)
Looking still around my hard disk I am finding lots of code that I didn't know I had, I hope somebody can use it. This code is to handle email POP3.
//// To do// Extracting mail attachment, and supporting differenet mime types and content// types.//------------------------------------------------------------------------------
using System;using System.Net;using System.Net.Sockets;using System.IO;using System.Collections;using System.Text;
namespace SuperJockey{ class MailMessage { public...