A POP3 e-mail checker : Mail « Network « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Network » MailScreenshots 
A POP3 e-mail checker
A POP3 e-mail checker

/*
C# Network Programming 
by Richard Blum

Publisher: Sybex 
ISBN: 0782141765
*/

using System;
using System.Drawing;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Windows.Forms;

public class PopCheck : Form
{
   private TextBox hostname;
   private TextBox username;
   private TextBox password;
   private TextBox status;
   private ListBox messages;

   private TcpClient mailclient;
   private NetworkStream ns;
   private StreamReader sr;
   private StreamWriter sw;

   public PopCheck()
   {
      Text = "popcheck - A POP3 e-mail checker";
      Size = new Size(400380);

      Label label1 = new Label();
      label1.Parent = this;
      label1.Text = "Hostname:";
      label1.AutoSize = true;
      label1.Location = new Point(1033);

      hostname = new TextBox();
      hostname.Parent = this;
      hostname.Size = new Size(200* Font.Height);
      hostname.Location = new Point(7530);

      Label label2 = new Label();
      label2.Parent = this;
      label2.Text = "User name:";
      label2.AutoSize = true;
      label2.Location = new Point(1053);

      username = new TextBox();
      username.Parent = this;
      username.Size = new Size(200* Font.Height);
      username.Location = new Point(7550);

      Label label3 = new Label();
      label3.Parent = this;
      label3.Text = "Password:";
      label3.AutoSize = true;
      label3.Location = new Point(1073);

      password = new TextBox();
      password.Parent = this;
      password.PasswordChar = '*';
      password.Size = new Size(200* Font.Height);
      password.Location = new Point(7570);

      Label label4 = new Label();
      label4.Parent = this;
      label4.Text = "Status:";
      label4.AutoSize = true;
      label4.Location = new Point(10325);
     
      status = new TextBox();
      status.Parent = this;
      status.Text = "Not connected";
      status.Size = new Size(200* Font.Height);
      status.Location = new Point(50322);

      messages = new ListBox();
      messages.Parent = this;
      messages.Location = new Point(10108);
      messages.Size = new Size(36016 * Font.Height);
      messages.DoubleClick += new EventHandler(getmessagesDoubleClick);

      Button login = new Button();
      login.Parent = this;
      login.Text = "Login";
      login.Location = new Point(29532);
      login.Size = new Size(* Font.Height, * Font.Height);
      login.Click += new EventHandler(ButtonloginOnClick);

      Button close = new Button();
      close.Parent = this;
      close.Text = "Close";
      close.Location = new Point(29562);
      close.Size = new Size(* Font.Height, * Font.Height);
      close.Click += new EventHandler(ButtoncloseOnClick);
    }

   void ButtonloginOnClick(object obj, EventArgs ea)
   {
      status.Text = "Checking for messages...";
      Thread startlogin = new Thread(new ThreadStart(loginandretr));
      startlogin.IsBackground = true;
      startlogin.Start();
   }

   void ButtoncloseOnClick(object obj, EventArgs ea)
   {
      if (ns != null)
      {
         sw.Close();
         sr.Close();
         ns.Close();
         mailclient.Close();
      }
      Close();
   }

   void loginandretr()
   {
      string response;
      string from null;
      string subject = null;
      int totmessages;

      try
      {
         mailclient = new TcpClient(hostname.Text, 110);
      catch (SocketException)
      {
         status.Text = "Unable to connect to server";
         return;
      }

      ns = mailclient.GetStream();
      sr = new StreamReader(ns);
      sw = new StreamWriter(ns);

      response = sr.ReadLine()//Get opening POP3 banner

      sw.WriteLine("User " + username.Text)//Send username
      sw.Flush();

      response = sr.ReadLine();
      if (response.Substring(0,4== "-ERR")
      {
         status.Text = "Unable to log into server";
         return;
      }

      sw.WriteLine("Pass " + password.Text);  //Send password
      sw.Flush();

      try
      {
         response = sr.ReadLine();
      catch (IOException)
      {
         status.Text = "Unable to log into server";
         return;
      }
      if (response.Substring(0,3== "-ER")
      {
         status.Text = "Unable to log into server";
         return;
      }

      sw.WriteLine("stat")//Send stat command to get number of messages
      sw.Flush();

      response = sr.ReadLine();
      string[] nummess = response.Split(' ');
      totmessages = Convert.ToInt16(nummess[1]);
      if (totmessages > 0)
      {
         status.Text = "you have " + totmessages + " messages";
      else
      {
         status.Text = "You have no messages" ;
      }

      for (int i = 1; i <= totmessages; i++)
      {
         sw.WriteLine("top " + i + " 0")//read header of each message
         sw.Flush();
         response = sr.ReadLine();

         while (true)
         {
            response = sr.ReadLine();
            if (response == ".")
               break;
            if (response.Length > 4)
            {
               if (response.Substring(05== "From:")
                  from = response;
               if (response.Substring(08== "Subject:")
                  subject = response;
            }
         }
         messages.Items.Add(i + "  " from "  " + subject);
      }

   }

   void getmessagesDoubleClick(object obj, EventArgs ea)
   {
      string text = (string)messages.SelectedItem;
      string[] textarray = text.Split(' ');
      ShowMessage sm = new ShowMessage(ns, textarray[0]);
      sm.ShowDialog();
   }

   public static void Main()
   {
      Application.Run(new PopCheck());
   }
}

class ShowMessage : Form
{
   public ShowMessage(NetworkStream ns, string messnumber)
   {
      StreamReader sr = new StreamReader(ns);
      StreamWriter sw = new StreamWriter(ns);
      string response;

      Text = "Message " + messnumber;
      Size = new Size(400380);
      ShowInTaskbar = false;

      TextBox display = new TextBox();
      display.Parent = this;
      display.Multiline = true;
      display.Dock = DockStyle.Fill;
      display.ScrollBars = ScrollBars.Both;

      sw.WriteLine("retr " + messnumber)//Retrieve entire message
      sw.Flush();
      response = sr.ReadLine();

      while (true)
      {
         response = sr.ReadLine();
         if (response == ".")
            break;
         display.Text += response + "\r\n";
      }
   }
}

           
       
Related examples in the same category
1.SmtpClient: From, Subject, Body, Attachments, To
2.Mail Test
3.Fancy Mail Test
4.Mail Attach Test
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.