Created
August 10, 2011 07:59
-
-
Save rossmason/1136332 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
<!-- configure the cloud connectors --> | |
<sfdc:config name="mySF" username="${sf.user}" password="${sf.password}" securityToken="${sf.securityToken}"/> | |
<twilio:config name="myTwilio" accountSid="${twilio.sid}" authToken="${twilio.authToken}"/> | |
<flow name="sendSmsNotifications"> | |
<sfdc:subscribe-topic config-ref="mySF" topic="/SMSNotificationStream"/> | |
<regex-filter pattern="\#now"/> | |
<twilio:send-sms-message config-ref="myTwilio" | |
from="+14155555555" | |
to="#[map-payload:To__c]" | |
body="#[map-payload:Text__c]"/> | |
</flow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment