Warning: You are browsing the documentation for PrestaShop 8, which is outdated.

You might want to read an updated version of this page for the current version, PrestaShop 9. Read the updated version of this page

Learn how to update to the latest version.

EmailType

Symfony native EmailType extended with IDNConverter (InternationalizedDomainNameConverter) feature

  • Namespace: PrestaShopBundle\Form\Admin\Type
  • Reference: EmailType

Type options

Option Type Default value Description

Code example

$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'),
        ]),
    ],
])

Preview example

EmailType rendered in form example