Login   Register  
PHP Classes
elePHPant
Icontem

File: sendmms-group.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Andy Dixon  >  Textlocal  >  sendmms-group.php  >  Download  
File: sendmms-group.php
Role: Example script
Content type: text/plain
Description: Send MMS to a group
Class: Textlocal
Send SMS or MMS messages using Textlocal API
Author: By
Last change:
Date: 2013-07-15 23:38
Size: 614 bytes
 

Contents

Class file image Download
<?php
require('../textlocal.class.php');

$textlocal = new Textlocal('demo@txtlocal.com''apidemo123');

/**
 * MMS file. Can either be a fully-formed local path
 *                                C:\path\to\your\file.jpg
 *            or a valid URL
 *                                http://yourdomain.com/file.jpg
 */
$file dirname(__FILE__) . '/mms-file.jpg';

$groupId 228839;
$message 'This is an MMS group message';

try {
    
$result $textlocal->sendMmsGroup($groupId$file$message);
    
print_r($result);
} catch (
Exception $e) {
    die(
'Error: ' $e->getMessage());
}
?>