expo-sms sending sms to group of recipients

When using expo-sms to send sms to group of people like:

const { result } = await SMS.sendSMSAsync(
  ['0123456789', '9876543210'],
  'My sample HelloWorld message',
  {
    attachments: {
      uri: 'path/myfile.png',
      mimeType: 'image/png',
      filename: 'myfile.png',
    },
  }
);

In this case we have 2 contacts added, what happens if for some reason sending to first contact fails, will second contact get the message?
Are they sent as one request, or they are sent in parallel to all contacts as separate messages?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.