SMS to Numbers

Hi,
This is working fine
/tool sms send serial0 “9909890908” message=“Hello Room”

Any idea, if i want to send the message to TWO Numbers at a time.

Best Idea, I am Using Netwatch tool to monitor the whole network. But want to send message to morethan one persons who are responsible.

Example.
For Wireless Link, If get Disturb, The GSM Modem send message to the main Person as well as to the co-person.

ANY idea.

just use this command twice:

/tool sms send serial0 “9909890908” message=“Hello Room”
/tool sms send serial0 “9909890909” message=“Hello!”

Thats the Easy Way, But i want Single command with more than one number.

that has no sense - anyway it will be 2 sms messages. what if one failed?

Do you perhaps know how to send sms via http API like so:
http://www.smswebsite.guess/sms/api/sendsms.asp?username=user&password=testpw&from=22334455&to=3344556677&message=Hello

I need to just post this command to Internet to send it.

ekkas
try using /tool fetch

Thanks for the reply, but how would one format a command like this?
/tool fetch host='http://www
does not work.
Ekkas

does it need GET or POST method?

I don’t know, I do not need to ‘GET’ anything back, I just ‘POST’ the command, if that is what you mean. I’m new at working with http…

if you transfer your data via URL - so ‘GET’ HTTP method is enough. post your full command you try to use

http://www.sms.co/sms/api/sendsms.asp?username=test&password=12345&from=27821231234&to=27821231235&message=Hello

when you click such link in a browser - does it work?

Yes, that is not the correct link, but something like that. It then sends an sms to the number in the URL with the message in URL & give a simple html response, something like “4203: Success” but I do not need that.

and what about

/tool fetch address=www.sms.co path=/sms/api/sendsms.asp?username=test&password=12345&from=27821231234&to=27821231235&message=Hello

doesn’t this work?