Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
SMS
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
rjclardy  
View profile  
 More options Mar 3 2011, 5:23 pm
From: rjclardy <rjcla...@cba.ua.edu>
Date: Thu, 3 Mar 2011 14:23:41 -0800 (PST)
Local: Thurs, Mar 3 2011 5:23 pm
Subject: SMS
Long time reader, first time poster...

Does anyone have any experience sending/receiving SMS messages with
Sinatra? Or with ruby on some other framework? If so, do you have any
advice or could you point me to any good info?

I apologize for the non-specific question but I just wanted to poll
the group for any advice before I really get started.

Thanks!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Schneider  
View profile  
 More options Mar 4 2011, 10:01 am
From: Chris Schneider <ch...@christopher-schneider.com>
Date: Fri, 4 Mar 2011 08:01:36 -0700
Local: Fri, Mar 4 2011 10:01 am
Subject: Re: SMS
Look into Twilio.  The ruby to send a message is dead simple using their gem:

  def send_sms
    account = Twilio::RestAccount.new(TWILIO_ACCOUNT_ID, TWILIO_ACCOUNT_TOKEN)

    recipients.each do |r|

      opts = {
        :To => r.phone_number,
        :From => FROM_NUMBER,
        :Body => self.message
      }

      resp = account.request("/#{API_VERSION}/Accounts/#{TWILIO_ACCOUNT_ID}/SMS/Messages ",
          'POST', opts)
    end
  end

On Mar 3, 2011, at 3:23 PM, rjclardy wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
rjclardy  
View profile  
 More options Mar 7 2011, 7:26 pm
From: rjclardy <rjcla...@gmail.com>
Date: Mon, 7 Mar 2011 16:26:30 -0800 (PST)
Local: Mon, Mar 7 2011 7:26 pm
Subject: Re: SMS
Thanks, I'll definitely look into it

On Mar 4, 9:01 am, Chris Schneider <ch...@christopher-schneider.com>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »