Click here to Skip to main content
15,885,990 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am a new in SMPP configurations, I need help on how to send SMSand get delivery reports in SMPP for a PHP project

What I have tried:

I have tried to send sms it works perfectly, the problem comes to get delivery reports
Posted
Updated 15-Oct-19 7:09am
v2
Comments
Patrice T 15-Oct-19 6:58am    
"the problem comes to get delivery reports"
Because you did it wrong.
peace_juma 15-Oct-19 7:01am    
That is why I need help on how to do it correctly
Patrice T 15-Oct-19 12:12pm    
Show your code

 
Share this answer
 
Comments
peace_juma 15-Oct-19 6:59am    
I have searched so much and I implemented what i got, but I failed to get delivery reports, better if I get some source code (PHP Source code in SMPP to send and get delivery reports )
Richard MacCutchan 15-Oct-19 7:56am    
If you cannot find source code examples in any of the tutorials then I am afraid you will have to write it yourself.
The term "delivery report" is kind of a misnomer; what it actually is is an incoming SMS that may be sent when a device receives a message.
"May be sent" means that devices and services are not required to respond that they got the message; much in the same way that email clients do not automatically send "Read Receipts" when you get mail.

That said, what you could be doing to check for your delivery report is to scan your incoming SMS messages, because that is what it is; and look for the particular code.


Personally I do not use SMPP as I do not need to be this low level in SMS. I prefer to just subscribe to an SMS service API and they automatically do a postback to one of my URLs when they get the delivery report.
There really is not too much overhead using this method; and none of my systems crashed with a volume of 1.6 million messages last month
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900