Well, I have some problematic registrations on account that the user typed eg "josé@gamail.com".
From what I've seen in this answer , most servers disabled a possible ping with response if email exists because of spammers.
What would be the solution you would use in this case?
I thought about creating a plugin where these errors are handled, for example:
let emailError = false;
let emailValid = false;
let emailInserido = this.emailInserido;
if ( emailInserido === "gamail" || emailInserido === "gmil" ... ) {
emailError = true;
} else {
emailValid = true; }