Click here to Skip to main content
15,891,708 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
C#
///Enter your details 
        string username="XXXXXXX";
        string password="XXXXXXX";
        
        string SenderID = "XXXXXX";
        string Message = "Test Message";
        string dest_MobileNo = "XXXXXXXXXX";

        WebClient client = new WebClient();
        string baseurl = "http://123.63.33.43/blank/sms/user/urlsmstemp.php?username=XXXXXX&pass=XXXXX&senderid=XXXXX&dest_mobileno=XXXXX&message=XXXXX&response=Y;
        Stream data = client.OpenRead(baseurl);
        StreamReader reader = new StreamReader(data);
        string ResponseID = reader.ReadToEnd();
        data.Close();
        reader.Close();


this is my code for sending single message.i want to send multiple message
Posted
Updated 15-Jul-15 21:18pm
v2
Comments
_Asif_ 16-Jul-15 3:17am    
You just need to call the same url in loop for each new message. What is the issue in that?

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