James Campbell
James Campbell

Reputation: 5087

How to go about implementing Texting / SMS / MMS into C# application

I am looking to integrate texting SMS/MMS into my current application. I have been looking around but I cannot find anything that seems to meet my needs. Any advice would be excellent.

Here are my requirements:

Upvotes: 2

Views: 1254

Answers (2)

Robert Levy
Robert Levy

Reputation: 29083

Twilio.com has a great service with REST services and a C# wrapper here https://github.com/twilio/twilio-csharp

Upvotes: 2

Pete M
Pete M

Reputation: 2048

I have had good luck with ClickATell. It's all commodity services now days anyway. I wouldn't worry too much about a C# specific API. There isn't much involved with interfacing with SMS providers, usually it's a straight forward web service API and C# makes short work of generating proxy classes for you. Anything else specific you're looking for? SLA stuff perhaps?

Upvotes: 1

Related Questions