PHPGetDisplayPreferences

From Rackspace Email & Apps API
Revision as of 16:58, 25 August 2008 by APIAdmin (talk | contribs) (New page: <pre> <?php $client = new SoapClient('https://secure.webmail.us/mail4/soap/soap_server.php?wsdl'); $res = $client->__soapCall('GetDisplayPreferences', array('Reselle...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
<?php

$client = new SoapClient('https://secure.webmail.us/mail4/soap/soap_server.php?wsdl');

$res = $client->__soapCall('GetDisplayPreferences',
                     array('ResellerUsername' => 'adminuser',
                           'ResellerPassword' => 'adminpass',
                           'HostName'         => 'somedomain.com',
                           'UserID'           => 'someuser',
                           $resultarray));

print_r($res);
print_r($resultarray);

?>