Bulk SMS is a mobile messaging service that allows to send high or low volumes of non-premium SMS quickly and efficiently.
Questions tagged [bulksms]
71 questions
2
votes
2 answers
how to send SMS within a loop in php
I am trying to send multiple SMS using loop, but its not working. If there is only one row to fetch then it works.
Code :
while ($row = mysql_fetch_array($result)) {
$dealer_name = $row['dealer_name'];
$dealer_contact_no =…

Ajay Krishna Dutta
- 722
- 2
- 7
- 21
1
vote
2 answers
possible problems of an sms gateway?
What could be the possible problems of an sms gateway?
If you are trying to create a system having large volume of transactions?
Is data loss rampant? are there any issues about SMS gateway? or there a huge issue about the problems?

dj buen
- 208
- 1
- 9
1
vote
5 answers
How do I design sms service?
I want to design a website that can send and receive sms.
How should I approach the problem ?
What are the resources available ?
I know php,python what else do I need or are the better options available?
How can experiment using my pc…

Pratik Deoghare
- 35,497
- 30
- 100
- 146
1
vote
1 answer
Flutter: Better approach for sending bulk SMS without user interaction on Android
In our project, we need to send bulk SMS to our entire customer list (around 200 users in the list), for their monthly dues.
We will:
send first sms to all users
second sms to pending payment users
final third message to remaining users
We can't…

Alena
- 1,134
- 6
- 19
- 45
1
vote
0 answers
I want to send sms in all contact list in combobox using at command
Here is my code
'FOR DISPLAY ALL CONTACT NUMBERS IN COMBOBOX
Private Sub BroadcastSMS_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Try
Dim lnard As New MySqlConnection("server = localhost; userid = root; password = 12345;…

rootech13
- 11
- 2
1
vote
2 answers
Twilio bulk sms queue with unique message for each recipient
I am trying to find an api call for sending or queueing bulk sms with a single api call with unique message for each recipient instead of calling twilio api n number of times.
Is there a way to achieving this?

Rohit Khatri
- 1,980
- 3
- 25
- 45
1
vote
1 answer
How To send multiple SMS using php loop
There is a problem with send multiple SMS using loop, not working..
the codes are :
while ($row = mysql_fetch_array($result)) {
$dealer_name = $row['dealer_name'];
$dealer_contact_no = $row['contact_no'];
$date = new…
user5384372
1
vote
1 answer
How to set Data coding to 3 in kannel
I need to set data_coding value in kannel to 3. But I cant figure out how to do that. I have tried all options available.
I have found that to set dcs to 3 we must set coding to 2 and use LATIN1 charset which I am using but still i get data_coding…

kirti
- 4,499
- 4
- 31
- 60
1
vote
2 answers
The remote server returned an error: (401) Unauthorized
I m trying to embed Bulk SMS API in my website ...But the code is giving 401
ASPX :
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>%>

KK.
- 11
- 2
1
vote
1 answer
Need to setup a local portal that sends free SMS
One of my customer is asking for setting up his own sms gateway, where his employees share sms freely. I suggested him to go with 1 of the bulk SMS API offered by other vendors. But he is willing to setup his own.
So when i went through different…

sravis
- 3,562
- 6
- 36
- 73
1
vote
2 answers
sending bulk sms stops in middle
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…

sunil sandeep
- 21
- 1
- 8
1
vote
2 answers
Best way to send multiple SMS at one click using SMS Gateway
I'm working on a PHP website where when user selects city and submits the form, it will get the users phone numbers from the database for that particular city and sends SMS to them.
I have used cURL functions within a while loop to execute this and…

Alien2828
- 109
- 1
- 2
- 10
1
vote
0 answers
PHP SMPP Implementation for SMS Delivery
I am doing PHP SMPP implementation, connecting to SMS SMPP Provider. I have found below PHP library to do that.
www.phpclasses.org/package/1373-PHP-Sends-SMS-messages-via-an-SMPP-server.html
I found Good Example here to send the SMS Messages.…

Mark
- 362
- 2
- 7
- 21
0
votes
1 answer
How to receive and reply to SMS messages with Twilio?
Example code:
import java.util.Arrays;
import java.util.List;
import com.twilio.Twilio;
import com.twilio.rest.notify.v1.service.Notification;
public class Example {
// Find your Account Sid and Token at twilio.com/user/account
public static…

Nicholas Saunders
- 684
- 9
- 28
0
votes
0 answers
Otp integration with api
I'm using bulk-sms.in service for my Signup with OTP Send to User Mobile Number.
I have use bulk-sms.in SMS HTTP service.
I have to connect with support team but not any response get.
if any one have idea please answer.
Thank…