.md Productsmd mdEmail® Registration API

enableAccount($session_id, $domain_name, $user_name)

enableAccount should be called when a max md user needs to enable an email account. It basically turns on the permission to retrieve email via the webmail, imap and pop access methods without affecting any data. The user's password will be unaffected as well.

It can be retrieved via a soap request using the "enableAccount" method to https://api.max.md.eval.max.md/enableAccount.php?wsdl.

Response

  (string) code - A response code. This will be "000" if there is no error
  (string) message - A description of the reponse code
  (string) values - An array of integers indicating disabled or enabled
        0 - Disabled
        1 - Enabled

Sample Code (using NuSoap)

$soap = new soapclient("https://api.max.md.eval.max.md/enableAccount.php?wsdl",array( 'trace' => true, 'exceptions' => true, ));
$response= $soap->enableAccount($session_id, $domain_name, $user_name);
if ($response->code == '000') {
  echo $response->message;
}else{
  echo $response->message;
}

The xml for the WSDL can be found here