TeamMentor.CoreLib.SendEmail_ExtensionMethods.serverNotConfigured C# (CSharp) Method

serverNotConfigured() public static method

public static serverNotConfigured ( this sendEmails ) : bool
sendEmails this
return bool
        public static bool serverNotConfigured(this SendEmails sendEmails)
        {
            return sendEmails.Smtp_Server.notValid() ||
                   sendEmails.Smtp_UserName.notValid() ||
                   sendEmails.Smtp_Password.notValid();
        }