Skip to content

SendSms callback is always giving error as true in IOS #99

@UraanAmritansh

Description

@UraanAmritansh

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions