Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.
You might want to read the documentation for the current version, PrestaShop 8. Read the current version of this page
Symfony native EmailType extended with IDNConverter (InternationalizedDomainNameConverter) feature
Option | Type | Default value | Description |
---|
$builder->add('email', EmailType::class, [
'constraints' => [
$this->getNotBlankConstraint(),
$this->getLengthConstraint(EmployeeEmail::MAX_LENGTH),
new Email([
'message' => $this->trans('This field is invalid', [], 'Admin.Notifications.Error'),
]),
],
])