briankabiro / react-native-get-sms-android

React Native module to get messages on an Android device
MIT License
135 stars 68 forks source link

Sending msg to multiple numbers is sending only to first number of an array. #104

Open Vshri opened 4 months ago

Vshri commented 4 months ago

Hello,

I am trying to send sms to multiple numbers at a time, but its getting sent only to the first specified number in the addressList array.

this is what i'm doing,

     var phoneNumber = {
        "addressList": ["+91123", "+91456"]
      }

       SmsAndroid.autoSend(
         JSON.stringify(phoneNumber),
        'Hello message',
        (fail) => {
           console.log('Failed with this error: ' + fail);
         },
         (success) => {
           console.log('SMS sent successfully');
         },
     );

Not getting where the issue is? can anyone please help me out!! Thanks in advance.