tags:

views:

1176

answers:

7

Anyone know of a free SMS library or webservice for .NET that will allow me to send text messages to people's cell phones?

A: 

Clickatel and most other SMS gateway providers provide some trial credits. And some service providers provide Email2SMS conversion. i.e You can send an email to [email protected] and it will be sent as an SMS.

These information does not answer your question directly but they would be useful in your taks..

Chathuranga Chandrasekara
+2  A: 

What are you looking for actually? a Library or a Proxy?

a Library is just an API that you can program to in a user-friendly way... that, there are hundreds out there, because that you need to add all the payed proxies, they all give you an API to program to.

If you are talking about Proxies, 98% of the proxies out there are not for free, and you need to pay a monthly basis amount of per SMS sent, it's up to you. All of them have trial versions (for example 100 SMS that you can send for free... normally called Credits).

There is some open source projects for SMS proxies, but for the Linux world like Kannel.

You can make your own using COMM interface and have a old mobile with a card that you can send commands to and make your own API interface based on that (there are plenty of SMS free packages and you might have it as well in your country)

for now... try this link:

http://email2sms.ru/sms.php

and a nice but old article on how to send sms using your own phone:

http://www.oreillynet.com/pub/a/wireless/2003/10/10/sms.html

balexandre
A: 

Use a SMS provider like clickatell. Sending a SMS is just a matter of sending a correct HTTP GET request containing your account information, the message and the recipient. See: http://support.clickatell.com/guides/clickatell/api_guide.php.

From .NET, you simply use the System.Net.WebClient class to create a correct HTTP GET request. Docs: http://msdn.microsoft.com/en-us/library/system.net.webclient(VS.80).aspx

codeape
A: 

Actually I found a pretty good one called PennySMS. It has a pretty good and simple web service I can consume and seems to work with all different types of cell phones.

does it work in UK?
James
A: 

Create your own library by reading this article http://codeglobe.blogspot.com/2009/02/sending-sms-in-cnet-using-gsm-modem-and.html

A: 

Try bulksms, very cheap and provide an incoming and outgoing service in pretty much every country for local SMS rates.

badbod99