Skip to content

Instantly share code, notes, and snippets.

@nasser
Created May 28, 2013 21:07
Show Gist options
  • Save nasser/5666130 to your computer and use it in GitHub Desktop.
Save nasser/5666130 to your computer and use it in GitHub Desktop.
class ManyMessages < Dumbstore::App
text_id 'many'
def text params
10.times do
Dumbstore.twilio.sms.messages.create(
from:Dumbstore::NUMBER,
to:params['From']
body:"I will say hello to you every 30 seconds"
)
sleep 30
end
nil
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment