Connect to the API
The API is available at the following addresses:
For retrieving information and setting up campaigns: https://eml-srv.com/_soap/control.php
For statistics: http://www.mdworks.info/_soap/stats.php
Warning: API access is restricted to authorized IPs. Before anything else, you must send us the IP address(es) from which you will be accessing the API.
Example with NuSOAP
include('nusoap/nusoap.php'); // Include the NuSOAP library
$client = new soapclient('https://www.eml-srv.com/_soap/control.php'); // Initialize SOAP
// Remove the s from 'https' if curl is not installed
Example with PHP5
$client = new SoapClient(null, array('location' => "https://www.eml-srv.com/_soap/control.php",
'uri' => "https://www.eml-srv.com"));Last updated on