Hikan7 / forecastgithub

just need these to come over to Forecast. please and thank you
0 stars 0 forks source link

Encode video files #6

Closed forecast[bot] closed 2 years ago

forecast[bot] commented 2 years ago

<?php

// Update the path below to your autoload.php, // see https://getcomposer.org/doc/01-basic-usage.md require_once '/path/to/vendor/autoload.php';

use Twilio\Rest\Client;

// Find your Account Sid and Auth Token at twilio.com/console // and set the environment variables. See http://twil.io/secure $sid = getenv("TWILIO_ACCOUNT_SID"); $token = getenv("TWILIO_AUTH_TOKEN"); $twilio = new Client($sid, $token);

$message = $twilio->messages ->create("+15558675310", // to [ "body" => "This is the ship that made the Kessel Run in fourteen parsecs?", "from" => "+15017122661" ] );