Returns whether the input matches the email regex.
static bool isEmail(String input) { return matches(regexEmail, input); }