Created
May 28, 2013 21:07
-
-
Save nasser/5666130 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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