Login   Register  
PHP Classes
elePHPant
Icontem

File: sendmms.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.php  >  Download  
File: sendmms.php
Role: Example script
Content type: text/plain
Description: Send MMS Example
Class: Textlocal
Send SMS or MMS messages using Textlocal API
Author: By
Last change:
Date: 2013-07-15 23:35
Size: 618 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';

$numbers = array('447403142134');
$message 'This is an MMS message';

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