Codeigniter Sms API Library To Send
Codeigniter Sms API Library To Send
of Contents
Introduction 1.1
First Chapter 1.2
1
Introduction
$smsGatewayUrl = 'http://springedge.com';
$textmessage = urlencode($textmessage);
$api_element = '/api/web/send/';
$api_params = $api_element.'?
apikey='.$apikey.'&sender='.$sender.'&to='.$mobileno.'&message='.$textmessage;
$smsgatewaydata = $smsGatewayUrl.$api_params;
$url = $smsgatewaydata;
$ch = curl_init();
curl_close($ch);
2
Introduction
How to Use:
Load sendsms helper as $this->load->helper('sendsms_helper');
3
First Chapter
First Chapter
GitBook allows you to organize your book into chapters, each chapter is stored in a separate
file like this one.