Last active
February 20, 2018 23:48
-
-
Save jarodreyes/98c131eeb58314037cec5699b8568512 to your computer and use it in GitHub Desktop.
Twilio Code DevIntersection
This file contains hidden or 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
using Twilio; | |
using Twilio.Rest.Api.V2010.Account; | |
using Twilio.Types; | |
namespace DevIntersection | |
{ | |
class SendSMS | |
{ | |
Twilio.Client.Init( | |
"accountSid", | |
"authToken" | |
); | |
var from = new PhoneNumber("twilioNumber"); | |
var to = new PhoneNumber("attendeeNumber"); | |
MessageResource.Create( | |
to, from, | |
body: "Come visit Twilio at Booth #8"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment