react-native-sms
react-native-sms copied to clipboard
send with attachment get error
Hi i take a picture with react-native-image-picker and i want send the uri from the image but only get this error:
I have tried to do it like 'data:image/png;base64,' + base64 but an error appears : 'message failed to load attachment'
my code :
` attachment = {
url: media,
iosType: 'public.jpg',
iosFilename: 'Image.jpg',
androidType: 'image/*',
};
SendSMS.send({
body: text,
recipients: numbersContacts,
successTypes: ['all', 'sent', 'queued',],
allowAndroidSendWithoutReadPermission: true,
attachment: attachment
`