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 | - `message`_ | | | - `checkMX`_ | | | - `checkHost`_ | +----------------+---------------------------------------------------------------------+ | Class | :class:`Symfony\\Component\\Validator\\Constraints\\Email` | +----------------+---------------------------------------------------------------------+ | Validator | :class:`Symfony\\Component\\Validator\\Constraints\\EmailValidator` | +----------------+---------------------------------------------------------------------+ Basic Usage ----------- .. configuration-block:: .. code-block:: yaml # src/BlogBundle/Resources/config/validation.yml Acme\BlogBundle\Entity\Author: properties: email: - Email: message: The email "{{ value }}" is not a valid email. checkMX: true .. code-block:: php-annotations // src/Acme/BlogBundle/Entity/Author.php namespace Acme\BlogBundle\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:: xml .. code-block:: php // src/Acme/BlogBundle/Entity/Author.php namespace Acme\BlogBundle\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 ------- 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 ~~~~~~~~~ .. versionadded:: 2.1 The ``checkHost`` option was added in Symfony 2.1 **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.