Smstools

SMS custom work

Are you looking for customized SMS solutions? We can develop them for you!

We can developer SMS software or automation scripts for your company!

You want a simple, effective and cost-effective way to communicate via SMS with your customers, audience or groups, but you don't find exactly what you're looking for? Then please contact us. Smstools has years of experience in offering successful SMS services.

Our standard software includes many features.
We can create add-ons to our existing software so it will meet your requirements.

REGISTER
We can developer SMS software or automation scripts for your company!

Some possibilities of SMS customization


SMS integration in your webshop


integrate SMS services into your planning system.


Adding additional functionalities to our SMS software.

<?php
	$ch = curl_init();
	$url = "https://api.smsgatewayapi.com/v1/message/send";
	$client_id = "XXX"; // Your API key
	$client_secret = "YYY"; // Your API secret
	$data = [
		'message' => "Hello World", //Message
		'to' => "32495123456", //Receiver
		'sender' => "YourName" //Sender
	];
	curl_setopt($ch, CURLOPT_URL, "$url");
	curl_setopt($ch, CURLOPT_POST, true);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_VERBOSE, true);
	curl_setopt($ch, CURLOPT_HTTPHEADER, [
		"X-Client-Id: $client_id",
		"X-Client-Secret: $client_secret",
		"Content-Type: application/json",
	]);
	curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
	$response = curl_exec($ch);
?>

Easy SMS API integration

With our SMS API you can extend your website or platform with an SMS integration. Integrating our SMS API is very easy so you can quickly connect your website or platform to our powerful SMS features.

API documentation