1 year ago
#240746
Bob Hartley
Can I use a variable for the 'To' field for Twilio SMS?
I keep getting an error: "RestException: [HTTP 400] Unable to create record: The 'To'..."
when trying to use a variable - see below, example = $user_phone_number = "+13334445555"
------------------------------------------------------------
$client = new Client($account_sid, $auth_token);
$client->messages->create(
// Where to send a text message (your cell phone?)
$user_phone_number,
array(
'from' => $twilio_number,
'body' => $MsgBody
)
);
------------------------------------------------------------
twilio-php
0 Answers
Your Answer