Click here to Skip to main content
15,896,502 members
Articles / Programming Languages / C#

Understanding the Insides of the SMTP Mail Protocol: Part 1

Rate me:
Please Sign up or sign in to vote.
5.00/5 (51 votes)
9 Dec 2012MIT4 min read 141.6K   3.6K   184  
This article describes the mail sending process using the SMTP mail protocol.
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;

namespace HigLabo.Net.Imap
{
    /// <summary>
    /// 
    /// </summary>
    public class ImapFolder
    {
        /// <summary>
        /// 
        /// </summary>
        public String Name { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public Boolean HasChildren { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public Boolean NoSelect { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public Int32 MailCount { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public Int32 RecentMailCount { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public List<ImapFolder> Children { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public ReadOnlyCollection<String> Flags { get; private set; }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="result"></param>
        public ImapFolder(SelectResult result)
        {
            this.Name = result.FolderName;
            this.MailCount = result.Exists;
            this.RecentMailCount = result.Recent;
            this.Flags = new ReadOnlyCollection<string>(new List<string>(result.Flags));
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="result"></param>
        public ImapFolder(ListLineResult result)
        {
            this.Name = result.Name;
            this.NoSelect = result.NoSelect;
            this.HasChildren = result.HasChildren;
            this.MailCount = -1;
            this.RecentMailCount = -1;
            this.Flags = new ReadOnlyCollection<string>(new List<string>());
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="folderName"></param>
        /// <param name="noSelect"></param>
        /// <param name="hasChildren"></param>
        public ImapFolder(String folderName, Boolean noSelect, Boolean hasChildren)
        {
            this.Name = folderName;
            this.NoSelect = noSelect;
            this.HasChildren = hasChildren;
            this.MailCount = -1;
            this.RecentMailCount = -1;
            this.Flags = new ReadOnlyCollection<string>(new List<string>());
        }
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public override string ToString()
        {
            return this.Name;
        }
    }
}

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 MIT License


Written By
CEO TinyBetter, Inc
Japan Japan
I'm a CEO of TinyBetter, Inc in Japan.

Comments and Discussions