在cordova android中无需用户确认即可自动发送消息

Automatic message send without user confirmation in cordova android

本文关键字:消息 确认 android cordova 用户      更新时间:2023-09-26

我已经使用这个插件实现了从应用程序发送消息。它会用我的消息内容和号码打开手机中的默认短信应用程序,但我需要在不提示默认短信应用的情况下自动发送短信,有什么方法可以在cordova中实现这一点吗?。

最后我找到了解决方案,只需将Intent留空即可获得所需的结果。

        var intent =''; //leave this empty for sending sms automatically
        var message='Test message';
        sms.send(number, message, intent, success, error)