Mailgun's Official SDK for PHP
Go to file
2013-08-07 16:22:19 -07:00
src/Mailgun Modified and renamed HTTPBroker to RestClient. 2013-08-07 16:22:19 -07:00
tests Modified and renamed HTTPBroker to RestClient. 2013-08-07 16:22:19 -07:00
.gitignore Adjusted gitignore 2013-08-02 14:25:39 -07:00
.travis.yml Updated travisyml 2013-08-02 15:15:39 -07:00
composer.json Fixed GET Requests 2013-08-02 12:43:50 -07:00
phpunit.xml.dist Fixed PHPUnit XML file 2013-08-02 14:37:29 -07:00
README.md Fixed README 2013-08-03 14:59:16 -07:00

Mailgun-PHP

Build Status

This is the Mailgun PHP SDK. This SDK contains methods for easily interacting with the Mailgun API. Below are examples to get you started. For additional examples, please see our SDK documentation at http://documentation.mailgun.com

Current Release: 0.4-Beta

Installation

To install the SDK, you will need to be using Composer in your project. If you aren't using Composer yet, it's really simple! Here's how to install composer and the Mailgun SDK.

# Install Composer
curl -sS https://getcomposer.org/installer | php

# Add Mailgun as a dependency
php composer.phar require mailgun/mailgun-php-sdk:~0.1

For shared hosts with SSH access, you might need to run this instead (contact your shared host for assistance):

php -d detect_unicode=Off -r "eval('?>'.file_get_contents('https://getcomposer.org/installer'));"

Next, require Composer's autoloader, in your application, to automatically load the Mailgun SDK in your project:

require 'vendor/autoload.php';
use Mailgun\MailgunClient;

Usage

Using the SDK should feel simple, if you're already familiar with our API endpoints. If not, no problem... When you're reviewing our documentation, the endpoints are expressed as a class in the SDK to make things easier.

For example, here's how to use the "Messages" API endpoint:

# First, instantiate the client with your API credentials and domain. 
$mgClient = new MailgunClient("key-3ax6xnjp29jd6fds4gc373sgvjxteol0", "samples.mailgun.org");

# Next, instantiate a Message object on the messages API endpoint.
$message = $mgClient->Messages();

# Now, compose your message.
$message->setMessage(array('from' => 'me@samples.mailgun.org', 
                           'to' => 'php-sdk@mailgun.net', 
                           'subject' => 'The PHP SDK is awesome!', 
                           'text' => 'It is so simple to send a message.'));

# Finally, send the message.
$message->sendMessage();

For usage examples on each API endpoint, go to the "src/Mailgun" folder and browse through each API endpoint folder. A README exists in each folder with examples.

Address
Bounces
Campaigns
Complaints
Lists
Logs
Messages
Routes
Stats
Unsubscribes

Support and Feedback

Be sure to visit the Mailgun official documentation website for additional information about our API.

If you find a bug, please submit the issue in Github directly. Mailgun-PHP Issues

As always, if you need additional assistance, drop us a note at support@mailgun.com.