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
- Host: GitHub
- URL: https://github.com/joncloud/textnet
- Owner: joncloud
- License: apache-2.0
- Created: 2014-06-18T02:11:13.000Z (over 11 years ago)
- Default Branch: publish
- Last Pushed: 2020-06-13T21:00:02.000Z (over 5 years ago)
- Last Synced: 2025-03-06T04:36:32.269Z (11 months ago)
- Language: C#
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();