Send SMS in asp.net
-
How to send sms from asp.net without gateway, is it possible?, if so how?
-
How to send sms from asp.net without gateway, is it possible?, if so how?
This link here on code project is a great place to start. http://www.codeproject.com/info/search.aspx?artkw=sms&sbo=kw[^]
-
How to send sms from asp.net without gateway, is it possible?, if so how?
I believe you will be required to have your custom SMS server type thing. For example some custom piece of software running on some septate machine that could pick alerts from your online database after certain intervals and the flush them out in SMS form. BTW you can also do another trick and that is if your mobile service providers support Email message using mobile phone number then you can simply trigger an Email with mobile number as to address while message content in subject of Email. This Email will be delivered as SMS.
I Web Development Free Lancer
Share your experience with others Check my Blog... -
How to send sms from asp.net without gateway, is it possible?, if so how?
May I ask why you do not want to use a gateway? If it is cost I recommend reconsidering a gateway. I use Twilio (no affiliation) and my cost is USD 0.02 per message. You can literally be up and running in 15 minutes and all you'll have to do is add a few lines of code to your application. I've seen a lot of people go the route of harvesting all the addresses of the free email-to-sms gateways that the carriers offers as a cheap way of not using an SMS gateway. That will work if you don't mind having absolutely no control over the quality of service or delivery. Lastly, you can get a GSM modem and put it on the wireless network. This is great as a learning experience but if you intend for your application to ever be used in a production environment, count on at least two dedicated servers on a reliable network plus the costs of a couple of truly unlimited texting plans with a local carrier. Seriously, have fun learning about all of these options but if you want to save time an learn from your elders ;) find a gateway that meets your needs.
-
How to send sms from asp.net without gateway, is it possible?, if so how?
Hope This Link SMS services in ASP.NET [^] will work for you.