react-native-sms icon indicating copy to clipboard operation
react-native-sms copied to clipboard

Default to MMS?

Open isaaclem opened this issue 6 years ago • 1 comments

SendSMS.send({
      body: `Hi, ${smsBody}`,
      recipients: [''],
      successTypes: ['all']
    }, (completed, cancelled, error) => {
      console.log('SMS Callback: completed: ' + completed + ' cancelled: ' + cancelled + 'error: ' + error);
    });

First of all, as shown above, I wished to have a non-filled recipients but in the sms composer it will shows Buddy Name by default? And second issue is that instead of New Message, it's showing New MMS?

isaaclem avatar Sep 13 '18 06:09 isaaclem

Have you tried not providing ‘recipients’ at all? That should fix the recipient issue.

I’ve never seen the MMS issue before— what platform/version is this?

tkporter avatar Sep 13 '18 09:09 tkporter