Click here to Skip to main content
15,888,610 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 141K   3.6K   184  
This article describes the mail sending process using the SMTP mail protocol.
using System;
using System.Collections.Generic;
using System.Text;

namespace HigLabo.Net.Smtp
{
    /// Represent ehlo command.
    /// <summary>
    /// Represent ehlo command.
    /// </summary>
    public class EhloCommand : SmtpCommand
    {
        private String _Domain = "";
		/// <summary>
		/// 
		/// </summary>
        public override String Name
        {
            get { return "Ehlo"; }
        }
		/// <summary>
		/// 
		/// </summary>
        public String Domain
        {
            get { return this._Domain; }
            set { this._Domain = value; }
        }
		/// <summary>
		/// 
		/// </summary>
		/// <param name="domain"></param>
        public EhloCommand(String domain)
        {
            this._Domain = domain;
        }
		/// <summary>
		/// 
		/// </summary>
		/// <returns></returns>
        public override String GetCommandString()
        {
            return String.Format("{0} {1}", this.Name, this.Domain);
        }
		/// <summary>
		/// 
		/// </summary>
        public class Result
        {
            private String _Keyword = "";
            private List<String> _Parameters = new List<string>();
			/// <summary>
			/// 
			/// </summary>
            public String Keyword
            {
                get { return this._Keyword; }
                set { this._Keyword = value; }
            }
			/// <summary>
			/// 
			/// </summary>
            public List<String> Parameters
            {
                get { return this._Parameters; }
            }
			/// <summary>
			/// 
			/// </summary>
            public Result()
            {
            }
        }
    }
}

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