-3

I would like to send sms messages using C# code.
For that, I am using the 'clickatell sms Gateway'.
Would anyone be able to help me with this?

j0k
  • 22,600
  • 28
  • 79
  • 90
rohan panchal
  • 881
  • 3
  • 15
  • 32

1 Answers1

2

From their site, C# Scripts

using System.Net;
using System.IO;
WebClient client = new WebClient ();
// Add a user agent header in case the requested URI contains a 
query.
client.Headers.Add ("user-agent", "Mozilla/4.0
 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR
1.0.3705;)");
client.QueryString.Add("user", "xxxx");
client.QueryString.Add("password", "xxxx");
client.QueryString.Add("api_id", "xxxx");
client.QueryString.Add("to", "xxxx");
client.QueryString.Add("text", "This is an example message");
string baseurl ="http://api.clickatell.com/http/sendmsg";
Stream data = client.OpenRead(baseurl);
StreamReader reader = new StreamReader (data);
string s = reader.ReadToEnd ();
data.Close ();
reader.Close ();
return (s);
chridam
  • 100,957
  • 23
  • 236
  • 235