Bulk SMS gateway integration in asp.net

9
Bulk SMS gateway integration in AS

Transcript of Bulk SMS gateway integration in asp.net

Page 1: Bulk SMS gateway integration in asp.net

Bulk SMS gateway integration in ASP.NET

Page 2: Bulk SMS gateway integration in asp.net

How to Integrate Bulk SMS API in ASP.NET Application?

Bulk SMS API allows application developer to integrate on their application and send the sms to all the numbers at one shot without login to their sms panel. Anyone can integrate the Bulk SMS API into their applications, software, website, etc.,Through API we can able to check the Status of the sent messages, Delivery report, and group delivery report. We can able to send the Unicode messaging also.

Page 3: Bulk SMS gateway integration in asp.net
Page 4: Bulk SMS gateway integration in asp.net

Once we integrate the Bulk SMS API in any of the application, the application trigger the HTTP API call with all the parameters when on required. The required parameters like SMS Service URL, User Name, Password, Mobile Number, Message, etc.. As soon as call the HTTP API, the api along with all the parameters will be send to SMS Gateway Server and the SMS Gateway evaluate all the parameters and automatically the message will deliver to the given number without login to the SMS panel itself.

Page 5: Bulk SMS gateway integration in asp.net

Sample Code for ASP.NET:using System;usingSystem.Collections;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.HtmlControls;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Xml.Linq;using System.Net;using System.IO;

Page 6: Bulk SMS gateway integration in asp.net

public partial class _Default : System.Web.UI.Page{protected void Page_Load(object sender, EventArgs e) { ///Enter your detailsstring Username = "xxxxxxxxx";string Password = "xxxxxxxxx";string Message = "Test message from HTTP API";stringMobileNo = "9xxxxxxxxx";

stringsenderid="XXXXX";

Page 7: Bulk SMS gateway integration in asp.net

WebClient client = new WebClient();stringbaseurl = "http://203.129.203.254/sms/user/urlsms.php?username=" + Username + "&pass=" + Password + "&senderid=060000&message=" + Message + "&dest_mobileno=" + MobileNo + "&response=Y"; Stream data = client.OpenRead(baseurl);StreamReader reader = new StreamReader(data);stringResponseID = reader.ReadToEnd();data.Close();reader.Close(); }}

Page 8: Bulk SMS gateway integration in asp.net

MESSAGING FEATURES

www.kapsystem.com

ADVANTAGE OF KAPSYSTEM

SERVICE

©2015, KAPSYSTEM ( Bulk SMS Service Provider Company) , Email [email protected]

Page 9: Bulk SMS gateway integration in asp.net

TRUSTED CLIENTS

www.kapsystem.com

KAP Computer Solution Pvt. Ltd (Bulk SMS Service Provider Company) HQ: Bangalore (Corporate Office)

Our Presence: Bangalore | Delhi | Mumbai | Hyderabad | Chennai | Coimbatore | Pune | Kolkata | Ahmedabad | Noida

Mobile : +91 97380 10000 | 1 [Sales] | Email : [email protected]: www.kapsystem.com

CONTACT US

©2015, KAPSYSTEM ( Bulk SMS Service Provider Company) , Email [email protected]