Tests to see if a string has a valid email format. Does not test the email to see if it really exists or works.
public static bool IsEmptyDate(this string email)
String containing email to test for a valid email.
string to = "email@abc.com";bool b = to.IsValidEmail();