Skip to content

Sample PHP code demonstrating how to send a SMS/Text message with the MessageMedia SOAP API

License

Notifications You must be signed in to change notification settings

elruwen/messagemedia-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MessageMedia PHP SDK

This library provides a simple interface for sending and receiving messages using the MessageMedia SOAP API.

If you have any issue using this sample code, or would like to report a defect, you could create a new Issue in Github or Contact us.

Installation

Windows users: set soap.wsdl_cache_dir in php.ini to something like "C:\temp\mmsoap" to speed up requests

Usage

example.php:

<?php

require('mmsoap/MMSoap.php');

// Set up account details
$username  = 'YourUserName001';
$password  = 'y0urpassw0rd';

// Set up sendMessage parameters
$recipients = array('+61491570156');
$messageIds = array('24');
$origin     =       "+61491570157";

$message   = 'Hello from messagemedia-php!';

// Set up stream context Server Name Indication (SNI) for use with proxy and HTTPS
//$opts = array('ssl' => array('SNI_server_name' => $host,'SNI_enabled' => TRUE));
//$context = stream_context_create($opts);

// Set up SOAP Options
$options = array( // Put options here to override defaults
        // Example Proxy Options

        //WsdlClass::WSDL_PROXY_HOST => '127.0.0.1',
        //WsdlClass::WSDL_PROXY_PORT => '8888'

        //WsdlClass::WSDL_PROXY_LOGIN => 'proxyUsername',
        //WsdlClass::WSDL_PROXY_PASSWORD => 'proxyPassword',
        //WsdlClass::WSDL_STREAM_CONTEXT => $context //If you require SNI
);

// Create new MMSoap class
$soap = new MMSoap($username, $password, $options);

// Send a message
$soap->sendMessage($recipients, $message, null, $origin);

Contributing

We welcome contributions from our users. Contributing is easy:

  1. Fork this repo
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a Pull Request

About

Sample PHP code demonstrating how to send a SMS/Text message with the MessageMedia SOAP API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%