An open API service indexing awesome lists of open source software.

https://github.com/joncloud/textnet

Simple text messaging API
https://github.com/joncloud/textnet

Last synced: about 2 months ago
JSON representation

Simple text messaging API

Awesome Lists containing this project

README

          

textnet
=======
Simple text messaging API

Sample
------
Add the following using directive: `using TextNet;`

Sending a message:

string phone = "1234567890";
string message = "Hello World!";
string carrier = Carriers.US.Att;
var text = new TextMessage(phone, message, carrier);
await text.SendAsync();