Tonmoy Ajize
Registered Member
- Jun 15, 2016
- 63
- 8
Hello There,
Title says all, please suggest me if you know about it
Thanks.
Title says all, please suggest me if you know about it
Thanks.
<?php
// Using http://unirest.io/php
$response = Unirest\Request::post("https://twilio.p.mashape.com/{accountsid}/SMS/Messages.json",
array(
"Authorization" => "<required>",
"X-Mashape-Key" => "<your mashape key>",
"Content-Type" => "application/x-www-form-urlencoded",
"Accept" => "text/plain"
),
array(
"Body" => "<required>",
"From" => "<required>",
"To" => "<required>"
)
);