/**
 * @class Ext.data.validator.Email
 * @extend Ext.data.validator.Format
 * @alias data.validator.email
 *
 * Validates that the value is a valid email.
 */
 
/**
 * @cfg {RegExp} matcher 
 * A matcher to check for simple emails. This may be overridden.
 * @accessor
 */
 
/**
 * @cfg {String} [message="Is not a valid email address"]
 * The error message to return when the value is not a valid email
 * @accessor
 */