We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure if this should even be addressed as the vowels are not part of ASCII-only characters practice.
EmailSchema = v.pipe(v.string(), v.nonEmpty('Please enter your email.'), v.email('Incorrect email format.'));
This email schema invalidates emails if any of the 'special' danish vowel are present in the email 'æøå' which is not ideal, but is understandable.
'my.næ[email protected]' would be invalid with the error 'Incorrect email format'
I have solved my issue by creating a v.custom email validation for this specific use case.
The text was updated successfully, but these errors were encountered:
I think this issue should not be solved by you as it is a very specific use case and not something that should be changed on your part.
Sorry, something went wrong.
I recommend using regex instead of custom. You can also have a look at #204.
regex
custom
@fabian-hiller Thanks a lot I will look into that
No branches or pull requests
Not sure if this should even be addressed as the vowels are not part of ASCII-only characters practice.
EmailSchema = v.pipe(v.string(), v.nonEmpty('Please enter your email.'), v.email('Incorrect email format.'));
This email schema invalidates emails if any of the 'special' danish vowel are present in the email 'æøå' which is not ideal, but is understandable.
'my.næ[email protected]' would be invalid with the error 'Incorrect email format'
I have solved my issue by creating a v.custom email validation for this specific use case.
The text was updated successfully, but these errors were encountered: