Jump to content
thirty bees forum
  • 0

Email address validation missing - domaincom accepted (dot missing)


30knees

Question

4 answers to this question

Recommended Posts

  • 0

Hi,

You can implement this with an override. Just create a file named Validate.php in directories override\classes So you get your file at override\classes\Validate.php

In Validate.php, just write:

``` <?php

class Validate extends ValidateCore { public static function isEmail($email) { if (empty($email) || !pregmatch(Tools::cleanNonUnicodeSupport('/^[a-z\p{L}0-9!#$%&\'*+\/=?^{}|~_-]+[.a-z\p{L}0-9!#$%&\'*+\/=?^{}|~-]@[a-z\p{L}0-9]+(?:[.]?[_a-z\p{L}0-9-]).[a-z\p{L}0-9]+$/ui'), $email)) return false;

    try {
        \Swift_Message::newInstance()->setFrom($email);

        return true;
    } catch (\Exception $e) {
        return false;
    }
}

}

```

Clean the cache (especially class_index.php), and it's works.

Regards.

Link to comment
Share on other sites

  • 0

Thanks, @Lathaneo!

@mdekker But is there a strong use case for email addresses without a TLD for an online shop? I would assume the only place where that would be required is with a type of localhost domain, but not for any true customer email address.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...