how to send sms to mobiles -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
There are many ways available to do this. 1.Set up a sms gateway(kannel i prefer) and connect with smsc using smpp (can send and get sms).then use your web server to connect with sms gateway. 2.Buy a API from service providers(Google it)(bit restricted).you will get a URL basically, and you can execute it using curl related functions or sockets Regards Cherankrish On Tue, Jun 15, 2010 at 6:29 PM, karnati kiran <karnatikirankumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> how to send sms to mobiles > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
This may or may not meet your requirements, but if you don''t need 100% certainty that the messages will be delivered, most mobile providers have an email address you can send a message to. The message will get forwarded as an SMS to the mobile device. I''m using this technique in my app. Here is a list of some of them. Alltel phonenumber-uPkaz0FUOsYLnKnQRNZS0dBPR1lH4CV8@public.gmane.org AT&T Wireless phonenumber-zRxw8em4qunk1uMJSBkQmQ@public.gmane.org Boost phonenumber-UWMxmg0DI0iyE2HGdPltyQC/G2K4zDHf@public.gmane.org Cingular phonenumber-45smAYJcXQ4FQeE35raUng@public.gmane.org Cricket phonenumber-XGObAPG6URiItRKTMaWxUgC/G2K4zDHf@public.gmane.org Digicel +phonenumber-pUQuOLoveb0eu96UJ09/xQ@public.gmane.org Lime phonenumber-J5LMMdOzw9JWk0Htik3J/w@public.gmane.org MetroPCS phonenumber-q/nuN4ceExXuufBYgWm87A@public.gmane.org Nextel phonenumber-jdSDcPZFiz9V41kd8zv9Y1aTQe2KTcn/@public.gmane.org QWest phonenumber-/JYgIRcM1+xBDgjK7y7TUQ@public.gmane.org Rogers PCS phonenumber-N2cUGYwyuVJYzD5mSbZInQ@public.gmane.org Sprint PCS phonenumber-jdSDcPZFiz+YLwXevFGzQBwHaTl2S5le@public.gmane.org T-Mobile phonenumber-aj8q72DIn+rR7s880joybQ@public.gmane.org US Cellular phonenumber-06deIBRdhink1uMJSBkQmQ@public.gmane.org Verizon phonenumber-UBU8Z7KHsBUAvxtiuMwx3w@public.gmane.org Virgin Mobile phonenumber-GrxzRUFcHH4AvxtiuMwx3w@public.gmane.org Make sure the message is below the 160 character limit as there will be no confirmation of receipt or notification of failure. The delay between sending the message and it being received varies with each message, and delivery is not guaranteed (which is also a stipulation of the SMS protocol). Dee On Jun 15, 9:16 am, cheran krishnamoorthy <cherankr...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> There are many ways available to do this. > > 1.Set up a sms gateway(kannel i prefer) and connect with smsc using smpp > (can send and get sms).then use your web server to connect with sms gateway. > 2.Buy a API from service providers(Google it)(bit restricted).you will get a > URL basically, and you can execute it using curl related functions or > sockets > > Regards > Cherankrish > > On Tue, Jun 15, 2010 at 6:29 PM, karnati kiran > <karnatikiranku...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote: > > > how to send sms to mobiles > > > -- > > You received this message because you are subscribed to the Google Groups > > "Ruby on Rails: Talk" group. > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to > > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > > . > > For more options, visit this group at > >http://groups.google.com/group/rubyonrails-talk?hl=en.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
To clarify: sending an email to one of these addresses, and getting it trannsformed into an SMS message depends on that carrier''s SMSC having an email gateway device, which is essentially some sort of SMTP server which reads messages and makes an SMS message out of them. If the carrier did not have an email gateway, this sort of thing wouldn''t work. One should not assume that SMSC is some sort of email technology such that all messages sent from handset to handset get transformed into emails. On Jun 15, 11:13 am, Dee <dger...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> This may or may not meet your requirements, but if you don''t need 100% > certainty that the messages will be delivered, most mobile providers > have an email address you can send a message to. The message will get > forwarded as an SMS to the mobile device. I''m using this technique in > my app. Here is a list of some of them. > > Alltel phonenum...-uPkaz0FUOsYLnKnQRNZS0dBPR1lH4CV8@public.gmane.org > AT&T Wireless phonenum...-zRxw8em4qunk1uMJSBkQmQ@public.gmane.org > Boost phonenum...-UWMxmg0DI0iyE2HGdPltyQC/G2K4zDHf@public.gmane.org > Cingular phonenum...-45smAYJcXQ4FQeE35raUng@public.gmane.org > Cricket phonenum...-XGObAPG6URiItRKTMaWxUgC/G2K4zDHf@public.gmane.org > Digicel +phonenum...-pUQuOLoveb0eu96UJ09/xQ@public.gmane.org > Lime phonenum...-J5LMMdOzw9JWk0Htik3J/w@public.gmane.org > MetroPCS phonenum...-q/nuN4ceExXuufBYgWm87A@public.gmane.org > Nextel phonenum...-jdSDcPZFiz9V41kd8zv9Y1aTQe2KTcn/@public.gmane.org > QWest phonenum...-/JYgIRcM1+xBDgjK7y7TUQ@public.gmane.org > Rogers PCS phonenum...-N2cUGYwyuVJYzD5mSbZInQ@public.gmane.org > Sprint PCS phonenum...-jdSDcPZFiz+YLwXevFGzQBwHaTl2S5le@public.gmane.org > T-Mobile phonenum...-aj8q72DIn+rR7s880joybQ@public.gmane.org > US Cellular phonenum...-06deIBRdhink1uMJSBkQmQ@public.gmane.org > Verizon phonenum...-UBU8Z7KHsBUAvxtiuMwx3w@public.gmane.org > Virgin Mobile phonenum...-GrxzRUFcHH4AvxtiuMwx3w@public.gmane.org > > Make sure the message is below the 160 character limit as there will > be no confirmation of receipt or notification of failure. The delay > between sending the message and it being received varies with each > message, and delivery is not guaranteed (which is also a stipulation > of the SMS protocol). > > Dee > > On Jun 15, 9:16 am, cheran krishnamoorthy <cherankr...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: > > > > > There are many ways available to do this. > > > 1.Set up a sms gateway(kannel i prefer) and connect with smsc using smpp > > (can send and get sms).then use your web server to connect with sms gateway. > > 2.Buy a API from service providers(Google it)(bit restricted).you will get a > > URL basically, and you can execute it using curl related functions or > > sockets > > > Regards > > Cherankrish > > > On Tue, Jun 15, 2010 at 6:29 PM, karnati kiran > > <karnatikiranku...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote: > > > > how to send sms to mobiles > > > > -- > > > You received this message because you are subscribed to the Google Groups > > > "Ruby on Rails: Talk" group. > > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh4Ykp1iOSErHA@public.gmane.orgm. > > > To unsubscribe from this group, send email to > > > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscrib e@googlegroups.com> > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/rubyonrails-talk?hl=en.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
You''d use this library, altough you need a clickatell account... http://github.com/lukeredpath/clickatell El 15/06/10 18:30, chewmanfoo escribió:> To clarify: sending an email to one of these addresses, and getting it > trannsformed into an SMS message depends on that carrier''s SMSC having > an email gateway device, which is essentially some sort of SMTP server > which reads messages and makes an SMS message out of them. If the > carrier did not have an email gateway, this sort of thing wouldn''t > work. One should not assume that SMSC is some sort of email > technology such that all messages sent from handset to handset get > transformed into emails. > > > On Jun 15, 11:13 am, Dee<dger...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> This may or may not meet your requirements, but if you don''t need 100% >> certainty that the messages will be delivered, most mobile providers >> have an email address you can send a message to. The message will get >> forwarded as an SMS to the mobile device. I''m using this technique in >> my app. Here is a list of some of them. >> >> Alltel phonenum...-uPkaz0FUOsYLnKnQRNZS0dBPR1lH4CV8@public.gmane.org >> AT&T Wireless phonenum...-zRxw8em4qunk1uMJSBkQmQ@public.gmane.org >> Boost phonenum...-UWMxmg0DI0iyE2HGdPltyQC/G2K4zDHf@public.gmane.org >> Cingular phonenum...-45smAYJcXQ4FQeE35raUng@public.gmane.org >> Cricket phonenum...-XGObAPG6URiItRKTMaWxUgC/G2K4zDHf@public.gmane.org >> Digicel +phonenum...-pUQuOLoveb0eu96UJ09/xQ@public.gmane.org >> Lime phonenum...-J5LMMdOzw9JWk0Htik3J/w@public.gmane.org >> MetroPCS phonenum...-q/nuN4ceExXuufBYgWm87A@public.gmane.org >> Nextel phonenum...-jdSDcPZFiz9V41kd8zv9Y1aTQe2KTcn/@public.gmane.org >> QWest phonenum...-/JYgIRcM1+xBDgjK7y7TUQ@public.gmane.org >> Rogers PCS phonenum...-N2cUGYwyuVJYzD5mSbZInQ@public.gmane.org >> Sprint PCS phonenum...-jdSDcPZFiz+YLwXevFGzQBwHaTl2S5le@public.gmane.org >> T-Mobile phonenum...-aj8q72DIn+rR7s880joybQ@public.gmane.org >> US Cellular phonenum...-06deIBRdhink1uMJSBkQmQ@public.gmane.org >> Verizon phonenum...-UBU8Z7KHsBUAvxtiuMwx3w@public.gmane.org >> Virgin Mobile phonenum...-GrxzRUFcHH4AvxtiuMwx3w@public.gmane.org >> >> Make sure the message is below the 160 character limit as there will >> be no confirmation of receipt or notification of failure. The delay >> between sending the message and it being received varies with each >> message, and delivery is not guaranteed (which is also a stipulation >> of the SMS protocol). >> >> Dee >> >> On Jun 15, 9:16 am, cheran krishnamoorthy<cherankr...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >> wrote: >> >> >> >> >>> There are many ways available to do this. >>> >> >>> 1.Set up a sms gateway(kannel i prefer) and connect with smsc using smpp >>> (can send and get sms).then use your web server to connect with sms gateway. >>> 2.Buy a API from service providers(Google it)(bit restricted).you will get a >>> URL basically, and you can execute it using curl related functions or >>> sockets >>> >> >>> Regards >>> Cherankrish >>> >> >>> On Tue, Jun 15, 2010 at 6:29 PM, karnati kiran >>> <karnatikiranku...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote: >>> >> >>>> how to send sms to mobiles >>>> >> >>>> -- >>>> You received this message because you are subscribed to the Google Groups >>>> "Ruby on Rails: Talk" group. >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org. >>>> To unsubscribe from this group, send email to >>>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscrib e@googlegroups.com> >>>> . >>>> For more options, visit this group at >>>> http://groups.google.com/group/rubyonrails-talk?hl=en. >>>> >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.