sms-gateway

how do I know if SMS has reached at destination in Twilio

一笑奈何 提交于 2019-12-10 21:48:09
问题 i am developing a web app and in that I am sending SMS using twilio gateway.I need to show on my page the status of SMS.If SMS is sent then it will show delivered else it will show pending. So please tell me how do i know whether the message has been delivered or not. Following is the sample code public class Example { public static final String ACCOUNT_SID = "AC5b8866a232v3b63bfgh0f9a872b2dfddd"; public static final String AUTH_TOKEN = "7a0068ca7d07036cbbddeba03370aujdhnm"; public static

Kannel Sqlbox not working (trying to connect to SQL Server instead of MySQL)?

落花浮王杯 提交于 2019-12-10 00:08:34
问题 I have a Kannel up and running on an Ubuntu 16.04 box, with local MySQL DLR storage. I want to add sqlbox to queue the incoming SMS in the same database. When I try to launch the sqlbox sqlbox.conf , here is what I get. 2017-08-03 14:02:21 [55982] [0] INFO: Starting to log to file /var/log/kannel/kannel-sqlbox.log level 0 2017-08-03 14:02:21 [55982] [0] INFO: Added logfile `/var/log/kannel/kannel-sqlbox.log' with level `0'. 2017-08-03 14:02:21 [55982] [0] PANIC: SQLBOX: MSSql: connection

How to integrate msg91 php api with Prestasms or Prestashop?

情到浓时终转凉″ 提交于 2019-12-08 14:15:49
问题 <?php error_reporting(E_ALL ^ E_NOTICE);ini_set('error_reporting', E_ALL ^ E_NOTICE); define('IS_ADMIN_FLAG', false); include_once(dirname(__FILE__).'/../../config/config.inc.php'); include_once(dirname(__FILE__).'/../../config/setting.inc.php'); include_once('includes/model/smsAdapter.php'); include_once('includes/model/sms.php'); include_once('includes/model/variables.php'); class ControllerSmsApi { public function __construct() { $this->index(); } public function index() { die("DISABLED");

sending bulk sms stops in middle

拜拜、爱过 提交于 2019-12-08 12:37:23
问题 Guys i have an issue in the following code. I need to send bulk sms to 24,000 mobile numbers. But if i send it after 150 number send it shows me an Internal server error and stop send other following numbers. Kindly go through the code given below and reply the positive code that can really help me. <?php //Code using fopen //Change your configurations here. //--------------------------------- $username = "username"; $api_password = "api_password"; $sender = "sender"; $domain = "domain";

ASP.NET SMS Gateway API

五迷三道 提交于 2019-12-08 09:18:12
问题 I purchased a SMS gateway for which they gave me only HTTP and XML API but I need ASP.NET API to work on my project. Can anybody help me how to convert the below API to ASP.NET(c#) API. HTTP API http://indiansms.smsmaker.in/api/sendmsg.php?user=*********&pass=********&sender=Sender ID&phone=Mobile No&text=SMS&priority=Priority&stype=smstype XML API $data="<?xml version='1.0' encoding='utf-8'?> <MESSAGE> <USERNAME>username</USERNAME> <PASSWORD>password</PASSWORD> <TEXT>Hi, this is a test

How to SEND/Retrieve SMS from GOIP

自古美人都是妖i 提交于 2019-12-08 02:58:30
问题 Is there a way for a PHP or VB.net to retrieve/send sms on GOIP (sms-gateway) without accessing it built in Web Manager?. The said device is using UDP port 44444. 回答1: This script is only to send SMS via php on a GOIP VOIP GATEWAY <?php $rand = rand(); $url = 'http://goip-ip-adress-here/default/en_US/sms_info.html'; $line = '1'; // sim card to use in my case #1 $telnum = '1230000000'; // phone number to send sms $smscontent = 'this is a test sms'; //your message $username = "admin"; //goip

Sending SMS from website to users - how?

爷,独闯天下 提交于 2019-12-07 14:13:30
问题 I have email notifications on my site but I want to add SMS notifications also. I am lost how to do this. Is it purely coding or do i need to engage in partnerships with phone providers world over or buy a service or how does it work. And for the coding are there frameworks i can use or have to do it from ground up? My social network is in php and mysql. Do i need anything from the database for this, like to store the messages or is that all on the ISP's end? 回答1: You need either a service

Receiving SMS and storing it in database using Twilio

怎甘沉沦 提交于 2019-12-07 09:28:20
问题 i am using Twilio API to send and receive sms from the customers. Every time i send the sms to my customers, i store the feilds like to , body in to my database. I have implemented the API for send message that works fine and am simply saving the fields in to my database. My Problem When i receive SMS from my customers to my twilio number. i want to get the fields like from number and the body and save to my databse. i looked that the documentation here https://www.twilio.com/docs/api/twiml

Send SMS from Web (are there some providers for this)?

∥☆過路亽.° 提交于 2019-12-07 07:27:22
问题 I'd like to have something like what the app.net site has. You click a button and get the option to send a link to your phone via SMS (or email). What are some options for implementing the sms side of things, and are there services or open source packages that provide this? Here's a random example from app.net . Click the "Get this App" button to see what I mean. Something like this would even work for me <a href="http://saasSMS.com?url=mycorp.com/test.html">Send link to Phone</a> Where

Send an SMS via Skype with PHP

落爺英雄遲暮 提交于 2019-12-06 12:49:35
问题 Does anyone have any experience using PHP to send an sms via skype I want the user off the website to use one the forms and give them a choice if they want to send an SMS to do a request. First it will have to check for the availabillity of Skype on the clients computer, if so it should send an SMS. I already have the users mobile number in the database when he logs to the website. Maybe, I have to use a combination off Javascript and PHP? I see that Skype has a call.php script, but I can't