2
Answers

SMS application with auto reply

Saikat Mekdar

Saikat Mekdar

7y
164
1
I want to develop SMS application with auto reply based on the content of the message using gsm modem. eg.Customer complaint received via sms and send the reply to the respective mobile number at a time.I also saved the number and message into the database so that there will be no repeat action formed.
 
How do i do this? Need Urgent reply. Thanks
Answers (2)
0
Saikat Mekdar

Saikat Mekdar

NA 86 179 7y
hi Laxmidhar,
this is just a sms api.this not i looking for.. 
0
Laxmidhar Sahoo

Laxmidhar Sahoo

NA 2.3k 1.4k 7y
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6. using System.Net;  
  7. using System.IO;  
  8. using System.Net.Mail;  
  9. using System.Net;  
  10. using System.Web;  
  11. namespace Utility  
  12. {  
  13. public class SendSMS  
  14. {  
  15. public void Send(string mobileno, string MessageContent)  
  16. {  
  17. WebClient client = new WebClient();  
  18. string baseurl1 = "http://sms.india.in/smsapi.aspx?userid=3455&pwd=4567&route=1&senderid=CTPLIO&destination=" + mobileno + "&message=" + MessageContent;  
  19. Stream data = client.OpenRead(baseurl1);  
  20. StreamReader reader = new StreamReader(data);  
  21. string Responseid = reader.ReadToEnd();  
  22. data.Close();  
  23. reader.Close();  
  24. }  
  25. }  
  26. }