不发送sms多于一些

时间:2016-09-30 13:36:03

标签: ionic-framework cordova-plugins

我正在尝试向一群人发短信,但我可以看到短信发送给一个人...... 我的代码是:

   var options = {
          replaceLineBreaks: false, // true to replace \n by a new line, false by default
          android: {
           // intent: 'INTENT'  // send SMS with the native android SMS messaging
            //intent: '' // send SMS without open any other app
          }
        };

        var success = function () { alert('Message sent successfully'); };
        var error = function (e) { alert('Message Failed:' + e); };
        sms.send(['0544462095',.........,'0547549701'],
          $scope.sms.context, options, success, error);

我正在使用离子1和cordova 6+, 任何想法乳清?

1 个答案:

答案 0 :(得分:0)

你做不到。您只能指定多个具有意图的电话号码:'INTENT'以启动彩信。 在你的情况下,你必须迭代你的数组,并每次调用$ cordovaSms.send()。