email_info = validate_email(data["email"], check_deliverability=False, test_environment=current_app.debug) # TODO DEPLOYMENT: Investigate check_deliverability and make sure test_environment (use @test) is set to False.
_validated_email = email_info.normalized # Use the normalized version of the string
"""
try:
# Validate the given email. If valid, the normalized version is returned.