public static string GetSmtpServer()
        {
            IWFAdminService svc        = Common.GetAdminAPI();
            string          smtpServer = string.Empty;

            try
            {
                smtpServer = svc.GetSmtpServer();
            }
            catch (Exception ex)
            {
            }
            return(smtpServer);
        }