M
M
MSwind2010-10-16 13:05:58
Startups
MSwind, 2010-10-16 13:05:58

SMS notifications

So, a new project X is being prepared. This project requires the function of sending SMS notifications to site users. For example, each user who fills in their date of birth will receive an SMS on that day with the text “Company X wishes you a happy birthday” (well, or something like that). So, the question is: how to implement it into the site? Are there ready-made online services for this or do you need to conclude some kind of contracts with mobile operators and get a short number? And in general, if there is some good material on this topic, I will be very happy to read, listen, watch.

Answer the question

In order to leave comments, you need to log in

26 answer(s)
P
pentarh, 2010-10-16
@MSwind

I use smsc.ru. an abundance of interfaces, sane prices.
I personally use smtp. Sent soap, SMS came.

A
Alexander Gorsky, 2010-10-16
@alcanoid

Recently they wrote on Habré about sms.ru/ , they promised 50 kopecks per message.

I
Innsbrook, 2010-10-16
@Insbrook

We work with the sms-uslugi.ru service.
They have: 50 free SMS, good tariffs (when paying up to 335 rubles, sms at 67 kopecks, when making an amount of 10,500 rubles, the price of sms is 30 kopecks. We have been working with them since May of this year. In May there were still problems sometimes, but since June there has not been a single problem with sending Work via https
Code for sending a request via HTTPS to send SMS (useful for other sms providers):
define('sms_transport','https:// example.com/test.xml');
/**
* @param string $request // XML-request
* @return null
*/
function sms_send($request) {
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL , sms_transport); // Set parameters
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);// Return a variable instead of posting it directly
curl_setopt($ch, CURLOPT_POST, 1) ;// Active the POST method
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);// Request
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
$result = curl_exec($ch);// execute the connexion
curl_close($ch);// Close it
return $result;
}

A
ASH_NASH, 2010-10-16
@ASH_NASH

Hello, I propose to pay attention to our SMS notification service with easy integration - AvisoSMS ( www.avisosms.ru ) The price per SMS is 0.8 rubles and below. Round-the-clock operational technical support, it is possible to conclude an agreement or work on a public offer. We will give a bonus to the balance for testing. Contact us! :)

M
m00t, 2010-10-16
@m00t

Somehow they connected this service to the site: yakoon.com/
At a cost of about 2 cents per SMS (it seems like 2-3WMZ for 100 paid for the test).
There they have an API for sending + a program for "indulging" desktop is available.
I was very pleased with the opportunity (I don’t know how other services do with this case) to indicate their sender.

R
RomikOvasapyan, 2010-10-16
@RomikOvasapyan

We work with paystream.ru
So far everything is fine

N
NeOn4eG, 2010-10-17
@NeOn4eG

I stuck a megaphone whistle into the server... for a subscriber of 5 rubles a day, you can send 300 sms.

E
Eugene, 2010-10-16
@Nc_Soft

What price per SMS do you expect?

A
Alexey, 2010-10-16
@alexxxst

www.smstraffic.ru - I use it, retail - 2 rubles per SMS, but it seems that you can buy packages and it comes out cheaper.

S
ShaHasH, 2010-10-16
@ShaHasH

www.opovestim.ru is a good, inexpensive service!

S
Sergey Savostin, 2010-10-16
@savostin

And throw in some more bourgeois pliz, otherwise Yakoon hasn’t been able to deliver something to the UK for 5 minutes ...

3
3ybHa9_Fe9, 2010-10-16
@3ybHa9_Fe9

<a href=" smsbliss.ru >smsbliss.ru

P
phasma, 2010-10-17
@phasma

smsmail.ru - 0.04ye

K
ksn, 2010-10-17
@ksn

Clickatell Bulk SMS Gateway

S
svt, 2010-10-17
@svt

littlesms.ru - who knows what happened to them? they had 25 kopecks each.

A
antonrr, 2010-10-17
@antonrr

Are there services for mass (about 10,000 subscribers) SMS mailings with the ability to set a caller id and the price per message is less than 50 kopecks?

W
wire, 2010-12-23
@wire

there is also www.napishi.ru
sending via API - 6 cents.
You can replenish your account for any amount, there is a SenderID substitution, passport data is not needed :)

A
AlexWinner, 2010-12-24
@AlexWinner

smsdirect.ru also look, please :)

T
TKing, 2011-07-18
@TKing

But does it happen that
users can respond to SMS sent by the site, conduct something like an SMS dialogue?

I
int20, 2011-07-18
@int20

There was a task to organize registration of users. After he submits the registration form, a confirmation code is sent to the entered mobile phone. Gentlemen, what do you think, which of the services listed above will cope with this better, otherwise I'm confused.
Thank you.

D
Denis Kostousov, 2011-12-05
@sandello

stramedia.ru/ prices are different. All I have seen is less than 50 kopecks.

S
sndl, 2012-02-02
@sndl

I use finesms.ru the price is 35 kopecks from the first sms.

M
misterumniy, 2012-09-05
@misterumniy

now I'm doing a project on this gateway www.bytehand.com/

O
Oleg Batishchev, 2014-02-10
@z0rg

I can offer my service, write in a personal / skype, we will agree. The price is lower than all offered here. So far, HTTP interface with authorization through a parameter. In the future, there will be OAuth and other interfaces, the service is being developed, proposals are being accepted.

H
Huey, 2014-02-21
@huey

aws.amazon.com/sns/pricing The Amazon web service is called SNS. $0.75 per 100 sms. Super reliable service and convenient api.

S
SeoJiHun, 2018-01-31
@SeoJiHun

I use potoksms.ru . Prices are not the lowest, but they do not deceive. Before that, I tried several gateways - they promise 7 kopecks, in fact, three rubles, after the first month.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question