When I do the following, the link comes out as standard text. Is there an esc sequence or something to tell the SMS that this is a link?
$email ="xxxx@xxxx.com"
$link = "http://www.google.com";
$phonenumber = "5555555"
$message = $email. " wants you to download xxxx, the awesome new app from xxxx. Tap the link to download ". $link;
$client->account->messages->create(array(
'To' => $phonenumber,
'From' => "+15555555",
'Body' => $Message));