Dev2.Runtime.ServiceModel.Help.GetSmtpExamples C# (CSharp) Method

GetSmtpExamples() static private method

static private GetSmtpExamples ( ) : string
return string
        static string GetSmtpExamples()
        {
            const string Format = "<tr><td>{0}</td><td style=\"text-align: center\">{1}</td><td style=\"text-align: center\">{2}</td></tr>";

            var servers = new StringBuilder("<table style=\"width: 100%; font-size: 0.9em;\"><tr><th>Host</th><th style=\"text-align: center\">SSL</th><th style=\"text-align: center\">Port</th></tr>");
            servers.AppendFormat(Format, "smtp.gmail.com", "Yes", "25");
            //servers.AppendFormat(Format, "smtp.live.com", "Yes", "25");  // PBI 953 - 2013.05.22 - TWR - Removed because it just does not work!!!!
            servers.AppendFormat(Format, "smtp.mail.yahoo.com", "No", "25");
            servers.AppendFormat(Format, "my-exchange-server", "No", "25");

            servers.Append("</table>");
            return servers.ToString();
        }