emilsedgh / modem

Send and receive messages and make ussd queries using your GSM modems
161 stars 68 forks source link

get delivery report indexes #6

Closed alexislg2 closed 10 years ago

alexislg2 commented 10 years ago

Hey, The delivery event works well but I would appreciate to have the index of the corresponding SMS so that I can remove it from my Inbox Thanks

emilsedgh commented 10 years ago

Its already there. Documentation was outdated. This should work fine:

modem.on('delivery', function(info, index) {
  modem.deleteMessage(index);
});
alexislg2 commented 10 years ago

Great!