Fill in the form below and we'll get you back up and running again in no time!
<?php
include "vendor/autoload.php";
$clients = new SMSGatewayMe\Client\ClientProvider("your-token-here");
$sendMessageRequest = new SMSGatewayMe\Client\Model\SendMessageRequest([
'phoneNumber' => '07791064782', 'message' => 'hello world', 'deviceId' => 1
]);
$sentMessages = $clients->getMessageClient()->sendMessages([$sendMessageRequest]);