Currently the EmailType of Symfony allows any email like:
"whatever@domain"
So there is no validation against the domain of the email
what is the best way to make it accepts only email like:
"whatever@domain.something"
so that the domain should contain at least one dot.
Since it should be a common issue, I was wondering if there's already a built-in way to accomplish it.