Email ===== Validates that a value is a valid email address. The underlying value is cast to a string before being validated. +----------------+---------------------------------------------------------------------+ | Applies to | :ref:`property or method ` | +----------------+---------------------------------------------------------------------+ | Options | - `strict`_ | | | - `message`_ | | | - `checkMX`_ | | | - `checkHost`_ | | | - `payload`_ | +----------------+---------------------------------------------------------------------+ | Class | :class:`Symfony\\Component\\Validator\\Constraints\\Email` | +----------------+---------------------------------------------------------------------+ | Validator | :class:`Symfony\\Component\\Validator\\Constraints\\EmailValidator` | +----------------+---------------------------------------------------------------------+ Basic Usage ----------- .. configuration-block:: .. code-block:: php-annotations // src/AppBundle/Entity/Author.php namespace AppBundle\Entity; use Symfony\Component\Validator\Constraints as Assert; class Author { /** * @Assert\Email( * message = "The email '{{ value }}' is not a valid email.", * checkMX = true * ) */ protected $email; } .. code-block:: yaml # src/AppBundle/Resources/config/validation.yml AppBundle\Entity\Author: properties: email: - Email: message: The email "{{ value }}" is not a valid email. checkMX: true .. code-block:: xml .. code-block:: php // src/AppBundle/Entity/Author.php namespace AppBundle\Entity; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Constraints as Assert; class Author { public static function loadValidatorMetadata(ClassMetadata $metadata) { $metadata->addPropertyConstraint('email', new Assert\Email(array( 'message' => 'The email "{{ value }}" is not a valid email.', 'checkMX' => true, ))); } } Options ------- strict ~~~~~~ **type**: ``boolean`` **default**: ``false`` When false, the email will be validated against a simple regular expression. If true, then the `egulias/email-validator`_ library is required to perform an RFC compliant validation. message ~~~~~~~ **type**: ``string`` **default**: ``This value is not a valid email address.`` This message is shown if the underlying data is not a valid email address. checkMX ~~~~~~~ **type**: ``boolean`` **default**: ``false`` If true, then the :phpfunction:`checkdnsrr` PHP function will be used to check the validity of the MX record of the host of the given email. checkHost ~~~~~~~~~ **type**: ``boolean`` **default**: ``false`` If true, then the :phpfunction:`checkdnsrr` PHP function will be used to check the validity of the MX *or* the A *or* the AAAA record of the host of the given email. .. include:: /reference/constraints/_payload-option.rst.inc .. _egulias/email-validator: https://packagist.org/packages/egulias/email-validator