The Realm of Real

..rjproz's blog..

Net-SMSAgent – Add SMS functionality in your ASP.NET Website and .NET Applications – Free library

…Use it yourself… 

This is developer special library by which they can add SMS functionality in their .NET windows application or Websites. This library uses Site2Sms.com to send SMS to non-DND mobile numbers in India. Indeed this library is free with no restriction.

Courtesy  http://hybriona.com/hyb/blogs/wp-content/uploads/2012/05/276492_228671693835090_698288_n.jpg


Details:-

  • Filename : Net-SMSAgent.dll
  • Platform : .Net Framework 2.0 or above
  • Operating System : Windows

Best Features:-

  • Library is easy to understand and simple to implement.
  • Sends unlimited SMS of 230 characters
  • Faster and Reliable
  • Best for Freebie/ open source programmers

Limitations:-

  • Cannot send SMS to DND numbers.
  • Obviously, as it uses Site2Sms.com, so the receiver gets SMS from their domain. So it is not recommended for any Organization.
  • Not a kind of limitation but to preserve Agent Identity a small text will be appended at the end of every message.
Usage Demo:-
Site2SMS sms = new Site2SMS();
// sms.send_sms("sender id", "password", "receiver mobile number", "your message");
int status=sms.send_sms("9712xxxxxx", "password", "9879xxxxxx", "in the end");
Console.WriteLine(status);

The Function returns int with following conventions:-
  • 0 – SMS sent successfully
  • 1 – Login Failed
  • 2 – Message Sending Failed
  • 3 – Fatal Error

You need to add reference to the library in your Visual Studio project. If you don’t know how to add reference then visit this.



Click here to download the library and demo files..

*Note:- This is only a library which provides an interface to send SMS. It is not responsible for any bad things done through it.. Guns Don’t Kill People, People Kill People.. 😉

Leave a Reply

Your email address will not be published. Required fields are marked *