Validator says this email is valid, but when I trying send mail through aws.SES, there is error InvalidParameterValue: Missing local name.
But why this is valid email?
const
validator = require("validator"),
email = `""@example.com`;
console.log(validator.isEmail(email)); // true
I tried to validate ""@example.com by other tools, like html email input and this (this is not an advertisement, only first online checker I found) https://email-checker.net, but ""@example.com is not valid.
I agree ""@example.com is not valid email bcuz it contains special character "".
I _think_ this is technically a valid email, but I'm not 100% sure.
The email must have at least one character before the @fdqn. I think it should be fixed.
Chrome marks this email as invalid: http://jsfiddle.net/vkw2o18h/
I am willing to help fix this bug.
Will you accept my pool request?
Most helpful comment
The email must have at least one character before the @fdqn. I think it should be fixed.