-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsendSMS.php
More file actions
24 lines (22 loc) · 870 Bytes
/
Copy pathsendSMS.php
File metadata and controls
24 lines (22 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
// Authorisation details.
$username = "";
$hash = "";
// Config variables. Consult http://api.textlocal.in/docs for more info.
$test = "0";
// Data for text message. This is the text message data.
$sender = "TXTLCL"; // This is who the message appears to be from.
$numbers = ""; // A single number or a comma-seperated list of numbers
$message = "";
// 612 chars or less
// A single number or a comma-seperated list of numbers
$message = urlencode($message);
$data = "username=".$username."&hash=".$hash."&message=".$message."&sender=".$sender."&numbers=".$numbers."&test=".$test;
$ch = curl_init('http://api.textlocal.in/send/?');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);// This is the result from the API
//print_r($result);
curl_close($ch);
?>