using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HigLabo.Net.Smtp { /// <summary> /// /// </summary> public enum SendMailResultState { /// <summary> /// Could not open connection to mail server /// </summary> Connection, /// <summary> /// Unknown error /// </summary> InvalidState, /// <summary> /// Helo command response is invalid /// </summary> Helo, /// <summary> /// Start tls command is failure /// </summary> Tls, /// <summary> /// Authenticate failure /// </summary> Authenticate, /// <summary> /// Invalid mail from /// </summary> MailFrom, /// <summary> /// All recpt failure /// </summary> Rcpt, /// <summary> /// Data command failure /// </summary> Data, /// <summary> /// Failure when from,rcpt,data command executing. /// </summary> SendMailData, /// <summary> /// /// </summary> Success, } }
By viewing downloads associated with this article you agree to the Terms of use 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.
This article, along with any associated source code and files, is licensed under The MIT License
Math Primers for Programmers