public function MailGetAccountsById($account_ids)
 {
     // $account_ids : IDType or this array
     $this->CheckAndSetHeader(__FUNCTION__);
     $reg_args["account_id"] = $this->getRegularArgs($account_ids, __FUNCTION__);
     $this->encodeString($reg_args);
     $results = parent::MailGetAccountsById($reg_args);
     $this->methodClose();
     return $this->decodeString($results->account);
 }