Email validator that meets the RFC standard.
Use a complex regular expression to validate the emails structure.
let validator = RFCCompliantEmailValidator() validator.isValid("usuario@dominio.com") // true o false
isValid(_ value: String) -> Bool