You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is my code
SendSMS.send(
{
// Message body
body: shareUrl,
// Recipients Number
// recipients: [],
// An array of types
// "completed" response when using android
// successTypes: ['sent', 'queued'],
},
(completed, cancelled, error) => {
if (completed) {
console.log('SMS Sent Completed');
} else if (cancelled) {
console.log('SMS Sent Cancelled');
} else if (error) {
console.log('Some error occured',error);
}
},
);
This is working perfectly fine in android as it is redirecting to sms screen with body
But in IOS its giving error as true
Kindly look into this issue
The text was updated successfully, but these errors were encountered:
Here is my code
SendSMS.send(
{
// Message body
body: shareUrl,
// Recipients Number
// recipients: [],
// An array of types
// "completed" response when using android
// successTypes: ['sent', 'queued'],
},
(completed, cancelled, error) => {
if (completed) {
console.log('SMS Sent Completed');
} else if (cancelled) {
console.log('SMS Sent Cancelled');
} else if (error) {
console.log('Some error occured',error);
}
},
);
The text was updated successfully, but these errors were encountered: