Skip to content

Instantly share code, notes, and snippets.

@Tapanila
Created August 19, 2012 12:29
Show Gist options
  • Save Tapanila/3394618 to your computer and use it in GitHub Desktop.
Save Tapanila/3394618 to your computer and use it in GitHub Desktop.
using Twilio;
namespace WcfServiceExample
{
public class Service1 : IService1
{
public bool SendTextMessage(string message)
{
var accountSid = "";
var authToken = "";
var twilio = new TwilioRestClient(accountSid, authToken);
var msg = twilio.SendSmsMessage("+14155992671",
"+358504145229",
message);
return true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment