Also to send the same sms message to multiple recipients:
"http://localhost:13013/cgi-bin/sendsms?username=tester&password=foobar&to=30957095+123456+78910+etc.&text=(insert text)" This will send an sms message to 30957095, 123456, 78910, etc. == Rene -----Original Message----- From: users-boun...@kannel.org [mailto:users-boun...@kannel.org] On Behalf Of Thomas Sieh Sent: zondag 6 juni 2010 17:51 To: Martin J. Cc: users@kannel.org Subject: Re: Newbie: How to send multiple messages to sms recipients? hi, if you want to receive messages you have to set up a sms-service in your config. there are multiple ways. you can send the content via parameters to a script (see exec) or to an url, for example (get-url). the content of the message is accessible by the parameters like %b for full binary message, %p for the sender-number... (see documentation). two very simple examples: 1. exec = /home/thomas/sms.sh %q %Q %t %u %a %b sms.sh: #!/bin/bash for var in $@; do echo "$var" | tee -a /home/goofy/sms_message.txt done echo "-----------------------" | tee -a /home/thomas/sms_message.txt 2. get-url = http://127.0.0.1/receive_sms?from=%q&date=%t&text=%a http://127.0.0.1/receive_sms: <?php $from = $_GET['from']; $date = $_GET['date']; $text = $_GET['text']; echo "The message - From: ".$from.", Date: ".$date.", Text: ".$text."\r\n"; > For sending sms in a script you can use lynx -dump ... for example or the GET and POST commands. For example: lynx -dump "http://localhost:13013/cgi-bin/sendsms?username=tester&password=foobar&to=30957095&text=insert+you+text+here" your sending string should be inside a loop over an array with the destination addresses. BR, Thomas On Sun, Jun 06, 2010 at 05:04:08PM +0200, Martin J. wrote: | Hi, | | I have a newbie question: I just started to use Kannel and successfully made | this work: | | ./bearerbox -v 1 sms_GATEWAY_k700i.conf | ./smsbox sms_GATEWAY_k700i.conf | http://localhost:13013/cgi-bin/sendsms?username=tester&password=foobar&to=30957095&text=(insertyou | text here) | | So, I can send sms'es... Still haven't figured out how to receive them yet, | however... My question is this: I'm volunteer in an organization and we | talked about the possibility of having this kannel-software send out mass | sms'es to multiple recipients... However, I don't want to type each sms | message in the browser bar... I don't know much about http | send/get/receive/whatever so I hoped I could just send sms'es from the | terminal/console under Mac os X.... | | How to send sms'es from terminal, so I can make a script to send same | message to multiple sms recipients? | | | Thanks...