jeevan
jeevan

Reputation: 67

How to invoke Sms IOS and Android app in react Js Cordova?

I am trying to implement SMS and Call functionality in ReactJS Cordova. I am able to implement Call functionality by using the below logic.

 const callHandler = () => {
        const phoneNumber = `tel:${person?.mobileNumber}`;
        document.location.href = phoneNumber;
    };

But I am trying to implement invoking a native SMS app with some text message but unable to do it. Can someone help me on this.

Upvotes: 0

Views: 351

Answers (1)

Akshaya Jeevan
Akshaya Jeevan

Reputation: 634

You can use this plugin to send sms - https://github.com/cordova-sms/cordova-sms-plugin

Here you need to use intent:'INTENT' in options to open the nativ SMS app.

Upvotes: 1

Related Questions