Calculator 7 8 9 / 4 5 6 * 1 2 3 - 0 . = +
Posts
- Get link
- X
- Other Apps
M.toast({html: '".$message."',classes:'red darken-4'}); "; }else{ echo " "; } } //function to send SMS function sendSMS($phoneNumber,$textMessage) { // create a new cURL resource $ch = curl_init(); $smsPhoneNumber = "[[TOKY_SMS_PHONE_NUMBER]]"; $api_key = '[[TOKY_API_KEY]]';//'[[TOKY_API_KEY]]'; $headers = array(); $headers[] = "X-Toky-Key: {$api_key}"; $data = array("from" => $smsPhoneNumber, "email" => "[[AGENT_EMAIL]]", "to" => $phoneNumber, "text" => $textMessage); $json_data = json_encode($data); // set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, "https://api.toky.co/v1/sms/send"); curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST...