tags:

views:

183

answers:

5

I want to integrate SMS service with the software I am developing, so that users could send SMS to their clients.

+4  A: 

Really the question that you need to ask is, which SMS service would be easiest to integrate with C#. Most of them out there have Web APIs, which would be easy enough to tie in with a C# application.

A few example gateways:

http://www.mediaburst.co.uk/api/

http://www.zeepmobile.com/

http://www.messagemedia.co.uk/

Of course, to send SMS this way will cost money (usually in the form of credits with your chosen gateway). If you meant to ask how can you interact with a physical phone to send messages, well that would all depend on the phone, it's o/s and software available for it.

Seidr
buddy, then answer to that question only
Subodh Bansal
I've already given you the information you need to achieve the desired result - each of the mentioned gateways have their own API. You need to research them, find out which one is best suited to you/your client, and the implement the API in C#.
Seidr
With regards to how you can interact with the Web via C#, look into the HttpWebRequest class.
Seidr
You mean you're not going to do all the work for him Siedr? :-P Some folk are beyond help!
Dave
+4  A: 

Perhaps you can get actual SMS integration by sending an email ('[phoneNumber]@[carrierDomainName]'). This is how I integrated paging into my EventLog in the past. The cellphone domain name for each carrier shouldn't be too hard to determine. Verizon's is vtext.com.

Brad
Interesting - I wonder how many providers conform to this 'standard', or indeed allow this method of sending SMS.
Seidr
http://en.wikipedia.org/wiki/List_of_SMS_gatewaysMore gateways in that link which follow this pattern/standard
Dave
A: 

Here is a list of SMS gateways:

http://en.wikipedia.org/wiki/List_of_SMS_gateways

Dave

Dave
A: 

Yeah Subodh i know your question, i also want that software as i am a LIC agent, well that would help me in managing my clients and policies...

well for more answers, search on google with keyword -- "sms api"