* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * sfValidatorEmail validates emails. * * @package symfony * @subpackage validator * @author Fabien Potencier * @version SVN: $Id: sfValidatorEmail.class.php 22149 2009-09-18 14:09:53Z Kris.Wallsmith $ */ class sfValidatorEmail extends sfValidatorRegex { const REGEX_EMAIL = '/^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i'; /** * @see sfValidatorRegex */ protected function configure($options = array(), $messages = array()) { parent::configure($options, $messages); $this->setOption('pattern', self::REGEX_EMAIL); } }