I'm developing an application that sends bulk messages to different mobile numbers... My sending message method works fine for sending one message and shows the delivery report, but when I send lots of messages simultaneously, the application can't recognize which message is delivered to which phone number. I cant find any example.
Asked
Active
Viewed 590 times
0
-
Add the necessary info as extras on the Intent used to create the Sent PendingIntent. Here's an example: http://stackoverflow.com/questions/24673595/how-to-get-sms-sent-confirmation-for-each-contact-person-in-android/24845193#24845193 – Mike M. Aug 18 '14 at 11:49
1 Answers
0
In your delivery pendingIntent add an unique ID on the 2nd argument of PendingIntent.getBroadcast() method. In addition, you can add some extras to the intent you going to put in the pendingIntent.

ack2v
- 25
- 2
- 6