public function verifyAction()
 {
     $email = $this->getParam('email');
     $hash = $this->getParam('hash');
     $info = '';
     if ($email && $hash) {
         $userMapper = new Application_Model_UserMapper();
         if ($userMapper->verify($email, $hash)) {
             $info = 'Account was veriffied';
         } else {
             $info = 'This url in not valid';
         }
     } else {
         $info = 'This url in not valid';
     }
     $this->_helper->getHelper('FlashMessenger')->addMessage($info, 'info');
     $this->_helper->redirector('login');
 }