Skip to content

Instantly share code, notes, and snippets.

View JonEastman's full-sized avatar

Jon Eastman JonEastman

View GitHub Profile
<?php
foreach ($messages as $message) {
try {
$text = $client->messages->create(
$message->getPhone(),
array(
'from' => ‘+12629577957’,
'body' => ‘Text message here’
)
@JonEastman
JonEastman / twilio_sms_example.php
Last active January 27, 2019 02:48
Twilio SMS Example
<?php
// Your existing code ...
$accountSid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
$authToken = 'your_auth_token';
$toNumber = '+1xxxxxxxxxx';
$fromNumber = '+12629577957';
$bodyText = 'Hey this is a text via Twilio!';