API Commands
[All Commands]

Info_Web_Hosting_Mailbox


Information about a mailbox.

Input:

string ssid token from Login
string webhosting Web Hosting code
string mailbox email address of the mailbox

Output:

string status ok | error
string mailbox email address of the mailbox
array copy_to list of email addresses to which a copy of all incoming emails will be sent

Example:


<?php

$client 
= new SoapClient(null, [
    
'location' => 'http://regtons.com/soap/cmd.php',
    
'uri' => 'http://regtons.com/soap'
]);

$login_input = [
    
'login' => 'demo',
    
'password' => 'demouser'
];

$login_output $client->__call('Login', ['data' => $login_input]);

$input = [
    
'ssid' => $login_output['data']['ssid'],
    
'webhosting' => 'NGHTFH',
    
'mailbox' => 'sales@domain.or.af'
];

$output $client->__call('Info_Web_Hosting_Mailbox', ['data' => $input]);

print_r($input);
print_r($output);
$input: Array ( [ssid] => 51aca4e95c12821b56a9045babc943e7 [webhosting] => NGHTFH [mailbox] => sales@domain.or.af ) $output: Array ( [status] => ok [mailbox] => sales@domain.or.af [copy_to] => Array ( [0] => info@domain.or.af ) )

API Manual - version from 2023-05-12 12:15:50