2
Well, I have some problematic registrations because the user typed in: "josé@gamail.com".
From what I saw in this answer, most servers have disabled a possible ping with reply if the email exists, because of spammers.
What solution would you use in this case ?
I thought of 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; }
You propose a different approach to the question marked as duplicate, but your approach is not feasible. So I think the questions fall in the same answer.
– RSinohara