public function emailExists($email)
 {
     return User::countUsersWEmail($email) > 0 ? true : false;
 }