Hello, I would like to send sms to some external phone numbers from my asterisk server. Is it possible to send sms via softphones like X-Lite ? . Any tips regarding this will be helpful thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100817/6e8c84f1/attachment.htm
On 08/17/2010 09:00 AM, Tino wrote:> Hello, > > I would like to send sms to some external phone numbers from my > asterisk server. Is it possible to send sms via softphones like X-Lite > ? . Any tips regarding this will be helpful > > thanks > >This is easy to do by using email to SMS gateways. A list of them is on wikipedia (http://en.wikipedia.org/wiki/List_of_SMS_gateways). For the Asterisk side, you have an extension that sends the email. I personally use an AGI script for this part, but you could use a System() call as well. --johann
Could you share your AGI script? CK On Wed, Aug 18, 2010 at 5:43 AM, Johann Hoehn <johann.hoehn at ecommerce.com>wrote:> On 08/17/2010 09:00 AM, Tino wrote: > > Hello, > > > > I would like to send sms to some external phone numbers from my > > asterisk server. Is it possible to send sms via softphones like X-Lite > > ? . Any tips regarding this will be helpful > > > > thanks > > > > > This is easy to do by using email to SMS gateways. A list of them is on > wikipedia (http://en.wikipedia.org/wiki/List_of_SMS_gateways). For the > Asterisk side, you have an extension that sends the email. I personally > use an AGI script for this part, but you could use a System() call as well. > > > --johann > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > http://www.asterisk.org/hello > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100818/94536521/attachment.htm
Johann Hoehn wrote:> On 08/17/2010 09:00 AM, Tino wrote: >> Hello, >> >> I would like to send sms to some external phone numbers from my >> asterisk server. Is it possible to send sms via softphones like >> X-Lite ? . Any tips regarding this will be helpful >> >> thanks >> >> > This is easy to do by using email to SMS gateways. A list of them is > on wikipedia (http://en.wikipedia.org/wiki/List_of_SMS_gateways). For > the Asterisk side, you have an extension that sends the email. I > personally use an AGI script for this part, but you could use a > System() call as well.Many telcos provide an SMSC, often also accessible over a landline. We use the Swisscom SMSC at 0622100000. (Swisscom subscription required). /Per Jessen, Z?rich -- http://www.spamchek.com/ - your spam is our business.
Hello Johann, Thanks for your advice in this matter. But i am not sure how to pass the numbers to be sent sms in the dialplan. On Wed, Aug 18, 2010 at 3:13 AM, Johann Hoehn <johann.hoehn at ecommerce.com>wrote:> On 08/17/2010 09:00 AM, Tino wrote: > >> Hello, >> >> I would like to send sms to some external phone numbers from my asterisk >> server. Is it possible to send sms via softphones like X-Lite ? . Any tips >> regarding this will be helpful >> >> thanks >> >> >> This is easy to do by using email to SMS gateways. A list of them is on > wikipedia (http://en.wikipedia.org/wiki/List_of_SMS_gateways). For the > Asterisk side, you have an extension that sends the email. I personally use > an AGI script for this part, but you could use a System() call as well. > > > --johann >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100818/1ad62cd3/attachment.htm
Administrator TOOTAI
2010-Aug-18 17:27 UTC
[asterisk-users] sending sms from Asterisk server
Le 18/08/2010 16:03, Tino a ?crit :> Hello Johann, > > Thanks for your advice in this matter. But i am not sure how to pass > the numbers to be sent sms in the dialplan.agi(script,param1,param2,...,paramX) from your dialplan where script lies in /var/lib/asterisk/agi-bin> > On Wed, Aug 18, 2010 at 3:13 AM, Johann Hoehn > <johann.hoehn at ecommerce.com <mailto:johann.hoehn at ecommerce.com>> wrote: > > On 08/17/2010 09:00 AM, Tino wrote: > > Hello, > > I would like to send sms to some external phone numbers from > my asterisk server. Is it possible to send sms via softphones > like X-Lite ? . Any tips regarding this will be helpful > > thanks > > > This is easy to do by using email to SMS gateways. A list of them > is on wikipedia > (http://en.wikipedia.org/wiki/List_of_SMS_gateways). For the > Asterisk side, you have an extension that sends the email. I > personally use an AGI script for this part, but you could use a > System() call as well. >-- Daniel