DomainMailFwdDelete
From NETIM
Release | Runtime |
---|---|
API >= 2.0 | Synchronous |
Description
Deletes an email forward
StructOperationResponse domainMailFwdDelete(string idSession, string mailBox)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | mailBox | Email address to be deleted |
Return
A structure StructOperationResponse
Notes
There are no functions for updating an email forward. In such case, you must remove the address and create a new one with new recipients
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $StructOperationResponse = $clientSOAP->domainMailFwdDelete($idSession, "example@netim.com"); print_r($StructOperationResponse); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>
Release | Runtime |
---|---|
API > 1.0 | Synchronous |
Description
Deletes an email forward
int domainMailFwdDelete(string idSession, string mailBox)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | mailBox | Email address to be deleted |
Return
A tracking ID
Notes
There are no functions for updating an email forward. In such case, you must remove the address and create a new one with new recipients
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); $trackingID = $clientSOAP->domainMailFwdDelete($idSession, "example@netim.com"); echo($trackingID); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->logout($idSession); } ?>
JAVA
DRSServiceLocator service = new DRSServiceLocator(); String idSession; int trackingID; try { DRSPortType port = service.getDRSPort(); idSession = port.login("XXXX", "XXXX", "EN"); trackingID = port.domainMailFwdDelete(idSession, "example@netim.com"); System.out.println(trackingID); port.logout(idSession); } catch (RemoteException re) { System.out.println(re.getMessage()); } catch (ServiceException se) { se.printStackTrace(); }