
Mensajes de texto para empresas y organizaciones. ¿Estás buscando una SMS software para enviar marketing sms plataforma desde tu ordenador? ¡Nuestro servicio SMS puede ayudarte!
Enviar y recibir mensajes de texto es muy fácil con nuestro bajo coste, herramientas de primer nivel a través de nuestra alta calidad SMS API.
Con nuestro Email to SMS la solución que puede convertir mensajes de correo a SMS, y tú también puedes configurar la fórmula de marketing de SMS de cumpleaños y enviar sms online.
Lo hacemos fácil sin instalar un hardware o software y sin necesitar una capacitación requerida para su equipo. Enviar mensajes individuales, a grupos, o combinar por correos masivos fotos de texto a tus listas de contacto. Libretas de direcciones e informes de entregas con todas las funciones.
Tenemos más de una década de experiencia y nuestro sistema de mensajería de texto ha estado en constante desarrollo durante más de 15 años. Sms Tools ha sido diseñado para proporcionar a su empresa un sistema de mensajería de texto resistente, rápido y fácil de usar
¿por qué smstools? Acerca de nosotros<?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' => "34608123456", //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: "34608123456", //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', '34608123456'], //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": "34608123456", `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": "34608123456", "message": "Hello World", "sender": "YourName" }' \ 'https://api.smsgatewayapi.com/v1/message/send'
Con nuestra API SMS puedes ampliar tu software con la integración de SMS. Integrar nuestra API de SMS es muy fácil así que puedes conectar rápidamente tu web o software a nuestra poderosa plataforma de SMS
Documentación de la API SMSTrabajamos con altos estándares de seguridad. La seguridad de nuestros datos es 100% dócil GDPR. Además, tenemos una garantía de tiempo de actividad del 99.99%.
Regístrate hoy y envía tu primer API SMS en minutos.