Click here to Skip to main content
15,886,080 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 140.7K   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.IO;
using System.Text;
using HigLabo.Net.Mail;

namespace HigLabo.Net.Imap
{
    /// <summary>
    /// 
    /// </summary>
    public class CapabilityResult : ImapCommandResult
    {
        /// <summary>
        /// 
        /// </summary>
        public ReadOnlyCollection<String> Features { get; private set; }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="tag"></param>
        /// <param name="text"></param>
        public CapabilityResult(String tag, String text)
            : base(tag, text)
        {
            String s = "* Capability ";
            if (text.StartsWith(s, StringComparison.OrdinalIgnoreCase) == false)
            { throw new MailClientException(); }

            String line = "";
            using (StringReader sr = new StringReader(text))
            {
                line = sr.ReadLine();
            }
            Int32 index = s.Length;
            String ss = line.Substring(index, line.Length - index);
            List<String> l = new List<string>();
            foreach (var el in ss.Split(' '))
            {
                if (String.IsNullOrEmpty(el) == true) { continue; }
                l.Add(el);
            }
            this.Features = new ReadOnlyCollection<string>(l);
        }
    }
}

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