How to send an SMS from a project


You must subscribe to the Send SMS API of Your Emerginov (if available)

Then create a php file with the following code:

<?php
// Load required configuration & Emerginov Class
require_once("passwords.php");
require_once("Emerginov.php");

// Get a new Emerginov object
$e = new Emerginov($api_login, $api_password);

// Send the SMS
print_r($e->SendSMS("+33786023023", "Hello world !"));

?>