Aqueduct.Mail.MailMessage.emailOK C# (CSharp) Method

emailOK() private static method

private static emailOK ( string email ) : bool
email string
return bool
		private static bool emailOK(string email)
		{
			return email != null && email.LastIndexOf(".") > email.LastIndexOf("@");
		}