Skip to content

Instantly share code, notes, and snippets.

@TelegramSam
Created October 11, 2010 21:34
Show Gist options
  • Save TelegramSam/621282 to your computer and use it in GitHub Desktop.
Save TelegramSam/621282 to your computer and use it in GitHub Desktop.
  rule phonedone is active {
    select when twilio callstart
    twilio:say("Bidding has ended with a final price of #{highbid} dollars. Thanks!");
fired {
   last;
   }
  }
  rule smsdone is active {
    select when twilio sms
    twilio:sms("Bidding has ended with a final price of #{highbid} dollars. Thanks!");
fired {
   last;
   }
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment