Click here to Skip to main content
15,904,638 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Hi,
I want to send the total submitted applications and pending applications details of yesterday, everyday 7am to management through sms...
this must be send automatically from my asp.net application...

how can i achieve this...is anyone has idea...
Posted
Comments
[no name] 8-Nov-12 10:52am    
if you have the email address for the SMS recipients just send it by mail

1st of all you need to decide which way you apply to send sms from your application. Because I know two way most of people use to send sms. One via GSM Modem and another one online sms server.

If you choose 1st way then you need a GSM Modem who connected with your pc and send sms via this modem. See below article for Send sms via Modem.
Send and Read SMS through a GSM Modem using AT Commands

If you choose 2nd way then you need to buy a online sms server to send your sms. server provider provide you some API. Those API you use to send and received sms.
 
Share this answer
 
v2
Comments
Sharda Jaiswal 9-Nov-12 0:02am    
I want to send sms by using online sms server.
csharpbd 9-Nov-12 2:14am    
Okay.
1st of all you need to buy a service for online sms server.
Then you able to send sms.

There are many server or service provider who provide this types of service.
I know a service provider name Twillio-http://www.twilio.com/.
I use this type of service in my project. It's very good service.
Register this webservice http://www.webservicex.net/sendsms.asmx[^]

Then, in your code add a timer control
then on the tick event send the sms after checking the time

like
C#
Timer1_Tick(()
{
   if(DateTime.Now == 'time you want the SMS to be sent')
   {
      semdsms obj = new sendsms();
      obj.SendSMSToIndia(params);
   }
}


obj is the webservice object
and you would have to keep the application running
 
Share this answer
 
Comments
Sharda Jaiswal 9-Nov-12 0:14am    
It's not work for me. Do you have any other link of webservice.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900