Delete mailbox

				
					StructOperationResponse WebHostingMailDelete(string $IDsession, string $id, string $email)
				
			

Delete a mailbox.

REQUIRED

  • idSession string (32)
    Session ID.
  • id string
    Hosting ID.
  • email string
    Email address.

An Object of type StructOperationResponse

<?php 
$clientSOAP = new SoapClient("http://URL.wsdl");
 
try 
{
 
    $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); 
    $clientSOAP->WebHostingMailDelete($idSession, "NW1024", "admin@wordpress.netim.com"); 
}
catch(SoapFault $fault) 
{
    echo "Exception : " .$fault->getMessage(). "\n"; 
}
 
if (isset($idSession)) 
{
    $clientSOAP->sessionClose($idSession); 
}