public static bool IsValidEmail(string Mail) { string strRegex = @"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"; System.Text.RegularExpressions.Regex re = new System.Text.RegularExpressions.Regex(strRegex); if (re.IsMatch(Mail)) return true; else return false; }