Click here to Skip to main content
15,885,244 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.Linq;
using System.Text;

namespace HigLabo.Net
{
    /// <summary>
    /// 
    /// </summary>
    public class XmlData : Dictionary<String, String>
    {
        private const int DefaultIndent = 2;

        /// <summary>
        /// 
        /// </summary>
        public String XmlDeclaration { get; set; }

        /// <summary>
        /// 
        /// </summary>
        public String RootElementName { get; set; }

        /// <summary>
        /// 
        /// </summary>
        public XmlData Child { get; set; }

        /// <summary>
        /// 
        /// </summary>
        public List<XmlAttribute> Attributes { get; private set; }

        /// <summary>
        /// 
        /// </summary>
        public XmlData()
            : this(String.Empty)
        {
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="rootElementName"></param>
        public XmlData(String rootElementName)
        {
            XmlDeclaration = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>";
            RootElementName = rootElementName;
            Attributes = new List<XmlAttribute>();
        }

        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public override string ToString()
        {
            return CreateXmlText(this, 0);
        }

        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        private string CreateAttributeText(XmlData data)
        {
            if (data.Attributes.Count > 0)
            {
                return " " + String.Join(" ", data.Attributes.Select(a => a.ToString()));
            }
            return String.Empty;
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="data"></param>
        /// <param name="indent"></param>
        /// <returns></returns>
        private String CreateXmlText(XmlData data, int indent)
        {
            var sb = new StringBuilder(1024);

            if (indent == 0)
            {
                sb.AppendLine(data.XmlDeclaration);
            }

            sb.AppendFormat("{0}<{1}{2}>", new String(' ', indent), data.RootElementName, CreateAttributeText(data));
            sb.AppendLine();
            foreach (var key in data.Keys)
            {
                sb.AppendFormat("{0}<{1}>{2}</{1}>", new String(' ', indent + DefaultIndent), key, data[key]);
                sb.AppendLine();
            }
            if (data.Child != null)
            {
                sb.AppendLine(CreateXmlText(data.Child, indent + DefaultIndent));
            }
            sb.AppendFormat("{0}</{1}>", new String(' ', indent), data.RootElementName);

            return sb.ToString();
        }
    }
}

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