php - Twilio Programmable SMS from number behaving incorrectly -
i using twilio programmable sms api in php. during testing sms, sometime received sms number , sometime receiving sms short code have passed number in api.
my code is
$client = new services_twilio($account_sid, $auth_token); $client->account->messages->create(array( 'to' => "+xxxxxxxxxxx", 'from' => "+xxxxxxxxxxx", 'body' => "tomorrow's forecast in financial district, san francisco clear.", ));
so there anyway receiver receive sms passed number receiver can reply sms on number.
Comments
Post a Comment