Reputation: 67
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
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