
Messaggi di testo per aziende e organizzazioni. Stai cercando una Piattaforma per la Messaggistica di Massa per inviare messaggi dal tuo computer? Il nostro servizio SMS può aiutarti!
Inviare e ricevere messaggi di testo è una passeggiata, con i nostri gateway API SMS, strumenti eccellenti ed economici grazie alla nostra alta qualità.
Forniamo soluzioni avanzate per coupon inviabili.
Con la nostra soluzione Email in SMS puoi convertire email in SMS e puoi anche preparare le tue promozioni di compleanno via SMS.
Te lo rendiamo facile, senza dover installare software o hardware e con poca o nessuna formazione necessaria per la tua squadra. Invia messaggi di testo a individui o gruppi, oppure invia messaggi di massa alla tua lista contatti. Rubrica degli indirizzi dalle funzionalità complete e rapporto quotidiano dell’invio dei messaggi.
Abbiamo oltre un decennio di esperienza e il nostro sistema di messaggi di testo è stato in costante sviluppo per oltre 15 anni. Sms Tools è stato progettato per fornire alla tua azienda un sistema di messaggi di testo resistente, veloce e facile da usare
Perche’ smstools? Su di noi<?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' => "example", //Message 'to' => "393123456789", //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); ?>
const https = require("https"); const client_id = "XXX"; // Your API key const client_secret = "YYY"; // Your API secret const data = JSON.stringify({ message: "Hallo", //Message (required) to: "393123456789", //Receiver (required) sender: "YourName", //Sender (required) }); const options = { hostname: "api.smsgatewayapi.com", port: 443, path: "/v1/message/send", method: "POST", headers: { "X-Client-Id": client_id, "X-Client-Secret": client_secret, "Content-Type": "application/json", "Content-Length": data.length, }, }; const req = https.request(options, (res) => { console.log(`statusCode: ${res.statusCode}`); res.on("data", (d) => { process.stdout.write(d); }); }); req.write(data); req.end();
require "uri" require "net/http" url = URI("https://api.smsgatewayapi.com/v1/message/send") https = Net::HTTP.new(url.host, url.port) https.use_ssl = true request = Net::HTTP::Post.new(url) request["X-Client-Id"] = "XXX" // Your API key request["X-Client-Secret"] = "YYY" // Your API secret request["Content-Type"] = "application/json" form_data = [ ['message', 'example'], //Message (required) ['to', '393123456789'], //Receiver (required) ['sender', 'YourName'] //Sender (required) ] request.set_form form_data, 'multipart/form-data' response = https.request(request) puts response.read_body
import requests url = "https://api.smsgatewayapi.com/v1/message/send" payload={ 'message': 'example', #Message (required) 'to': '32479123456', #Receiver (required) 'sender': 'YourName' #Sender (required) } headers = { 'X-Client-Id': 'XXX', #Your API key 'X-Client-Secret': 'YYY', #Your API secret 'Content-Type': 'application/json' } response = requests.request( "POST", url, headers=headers, json=payload ) print(response.text)
var url = "https://api.smsgatewayapi.com/v1/message/send"; var client = new RestClient(url); client.Timeout = -1; var request = new RestRequest(Method.POST); request.AddHeader("X-Client-Id", "XXX"); // Your API key request.AddHeader("X-Client-Secret", "YYY"); // Your API secret request.AddHeader("Content-Type", "application/json"); request.AlwaysMultipartFormData = true; request.AddParameter("message", "example"); //Message (required) request.AddParameter("to", "32479123456"); //Receiver (required) request.AddParameter("sender", "YourName"); //Sender (required) IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
//PowerShell - RestMethod $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("X-Client-Id", "XXX") // Your API key $headers.Add("X-Client-Secret", "YYY") // Your API secret $body = '{ `n "to": "393123456789", `n "message": "Hello World", `n "sender": "YourName" `n}' $response = Invoke-RestMethod 'https://api.smsgatewayapi.com/v1/message/send' -Method 'POST' -Headers $headers -Body $body -ContentType “application/json; charset=utf-8” $response | ConvertTo-Json
//Shell - wget wget --no-check-certificate --quiet \ --method POST \ --timeout=0 \ --header 'X-Client-Id: XXX' \ // Your API key --header 'X-Client-Secret: YYY' \ // Your API secret --header 'Content-Type: application/json' \ --body-data '{ "to": "393123456789", "message": "Hello World", "sender": "YourName" }' \ 'https://api.smsgatewayapi.com/v1/message/send'
Con il nostro API SMS puoi estendere il tuo software con una integrazione SMS. Integrare il nostro API SMS è molto semplice, così puoi rapidamente connettere il tuo sito web o il tuo software alla nostra potente piattaforma SMS
documentazione APILavoriamo con alti standard di sicurezza. La sicurezza dei tuoi dati è conforme al 100% al GDPR. Inoltre, abbiamo un tempo di funzionamento garantito del 99.99%.
Iscriviti oggi e invia il tuo primo messaggio in pochi minuti.