Hi everybody,
I’m trying to send mutliple SMS but it doesn’t work.
this.sms.send(“0601020304, 0602030405, 0603040506”, this.message);
This code only send to the first number.
Can somebody help me ?
thks
Hi everybody,
I’m trying to send mutliple SMS but it doesn’t work.
this.sms.send(“0601020304, 0602030405, 0603040506”, this.message);
This code only send to the first number.
Can somebody help me ?
thks
The phone numbers are supposed to be inside an array.
this.sms.send(['num',num2','num3'],this.message);
Hi bandito,
Thanks for your answer but this doesn’t work.
Only send to the first number.
Hi,
What about “for loop” for every number and again call this.sms.send()
?