react-native-sms
react-native-sms copied to clipboard
Default to MMS?
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
?
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?