The string to validate as an email address.
true if the string is a valid email; otherwise, false.This function uses a practical regular expression to validate email addresses,
allowing most common formats while ignoring edge cases defined by full RFC 5322.
It requires the presence of an @ symbol and at least one . after it.
Limits enforced:
@): 1–64 characters@): 1–255 characters
Checks whether a given string is a valid email address.