I am developing component and I want to know how to validate email value entered by user using joomla 1.7?

JHTML::_('behavior.formvalidation') without using this method.
link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

Try this,

function validate()
{
    jimport('joomla.mail.helper');

    $valid = true;

     if ($this->_data->email && !JMailHelper::isEmailAddress($this->_data->email))
    {           
         $this->_app->enqueueMessage(JText::_('Invalid Email Address'),'error');                       
         $valid = false;           
    }   
    return $valid; 
}
link|improve this answer
1  
Thanks I'll check this. – user1168950 Jan 25 at 10:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.