tags:

views:

158

answers:

2

Duplicate

C# && SMS Tags

I am working in the .net framework 1.1 .. from my application i need to send a SMS to a mobile. Is it possible?

A: 

If you need to send a SMS to a phone, you'll probably need the services of a SMS gateway. However, if the volume of messages you need to send is not that high and you can foot the cost per SMS yourself, you could look at how to use your phone as a modem over USB or COM and send it the message that way.

AKX
+1  A: 

There are alot of SMS-gateway services for bulk-sms senders. All of them provide a (custom) API. Ususaly you just craft a special HTTP request. These API's can be used in any language, so .net as well.

Each carrier has its own rates, so do some price comparison. I don't know in which country you are (something Scandinavian?) so I cannot recommend anyone.

Gerrit