2016-08-06 11:26:53 +03:00
# Mailgun PHP client
2013-07-26 03:18:32 +04:00
2013-08-20 01:52:38 +04:00
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
official documentation
2013-08-13 23:26:34 +04:00
at http://documentation.mailgun.com
2013-07-25 10:35:12 +04:00
2016-11-24 11:30:41 +03:00
[![Latest Version ](https://img.shields.io/github/release/mailgun/mailgun-php.svg?style=flat-square )](https://github.com/mailgun/mailgun-php/releases)
2017-02-28 13:36:23 +03:00
[![Build Status ](https://img.shields.io/travis/mailgun/mailgun-php/master.svg?style=flat-square )](https://travis-ci.org/mailgun/mailgun-php)
2016-10-15 02:58:28 +03:00
[![StyleCI ](https://styleci.io/repos/11654443/shield?branch=master )](https://styleci.io/repos/11654443)
2016-11-24 11:30:41 +03:00
[![Code Coverage ](https://img.shields.io/scrutinizer/coverage/g/mailgun/mailgun-php.svg?style=flat-square )](https://scrutinizer-ci.com/g/mailgun/mailgun-php)
[![Quality Score ](https://img.shields.io/scrutinizer/g/mailgun/mailgun-php.svg?style=flat-square )](https://scrutinizer-ci.com/g/mailgun/mailgun-php)
[![Total Downloads ](https://img.shields.io/packagist/dt/mailgun/mailgun-php.svg?style=flat-square )](https://packagist.org/packages/mailgun/mailgun-php)
2016-12-06 22:10:38 +03:00
[![Join the chat at https://gitter.im/mailgun/mailgun-php ](https://badges.gitter.im/mailgun/mailgun-php.svg )](https://gitter.im/mailgun/mailgun-php?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2013-08-03 05:15:41 +04:00
2016-11-21 23:35:49 +03:00
**This is the documentation for dev-master. You find documentation for the latest stable
release [here ](https://github.com/mailgun/mailgun-php/tree/v2.1.2 ).**
2016-08-06 11:26:53 +03:00
## Installation
2013-08-20 01:52:38 +04:00
To install the SDK, you will need to be using [Composer ](http://getcomposer.org/ )
in your project.
If you aren't using Composer yet, it's really simple! Here's how to install
2016-08-06 11:26:53 +03:00
composer:
2013-07-25 10:35:12 +04:00
2016-08-06 11:26:53 +03:00
```bash
2013-07-25 10:35:12 +04:00
curl -sS https://getcomposer.org/installer | php
2015-10-03 23:12:32 +03:00
```
2016-09-01 00:26:08 +03:00
The Mailgun api client is not hard coupled to Guzzle or any other library that sends HTTP messages. It uses an abstraction
called HTTPlug. This will give you the flexibilty to choose what PSR-7 implementation and HTTP client to use.
2016-08-06 11:26:53 +03:00
If you just want to get started quickly you should run the following command:
2015-10-03 23:12:32 +03:00
```bash
2016-09-26 09:36:49 +03:00
php composer.phar require mailgun/mailgun-php php-http/curl-client guzzlehttp/psr7
2015-10-03 23:12:32 +03:00
```
2013-08-04 01:58:35 +04:00
2016-08-06 11:26:53 +03:00
### Why requiring so many packages?
2016-02-26 14:04:54 +03:00
2016-08-06 11:26:53 +03:00
Mailgun has a dependency on the virtual package
2016-09-01 00:26:08 +03:00
[php-http/client-implementation ](https://packagist.org/providers/php-http/client-implementation ) which requires to you install **an** adapter, but we do not care which one. That is an implementation detail in your application. We also need **a** PSR-7 implementation and **a** message factory.
2016-02-26 14:04:54 +03:00
2016-08-06 11:26:53 +03:00
You do not have to use the `php-http/curl-client` if you do not want to. You may use the `php-http/guzzle6-adapter` . Read more about the virtual packages, why this is a good idea and about the flexibility it brings at the [HTTPlug docs ](http://docs.php-http.org/en/latest/httplug/users.html ).
2016-02-26 14:04:54 +03:00
2016-08-06 11:26:53 +03:00
## Usage
2013-08-04 01:58:35 +04:00
2016-08-06 11:26:53 +03:00
You should always use Composer's autoloader in your application to automatically load the your dependencies. All examples below assumes you've already included this in your file:
2013-09-13 00:01:21 +04:00
2016-08-06 11:26:53 +03:00
```php
2013-08-04 01:58:35 +04:00
require 'vendor/autoload.php';
2013-08-08 21:39:44 +04:00
use Mailgun\Mailgun;
2013-08-04 01:58:35 +04:00
```
2013-08-13 23:26:34 +04:00
Here's how to send a message using the SDK:
2013-07-25 10:35:12 +04:00
```php
2017-03-26 21:42:36 +03:00
# First, instantiate the SDK with your API credentials
$mg = Mailgun::create('key-example');
2013-08-08 21:39:44 +04:00
# Now, compose and send your message.
2017-03-26 21:42:36 +03:00
$mg->message()->send('example.com', [
'from' => 'bob@example.com',
'to' => 'sally@example.com',
'subject' => 'The PHP SDK is awesome!',
'text' => 'It is so simple to send a message.'
]);
2013-07-25 10:35:12 +04:00
```
2013-07-25 10:53:16 +04:00
2017-04-08 11:45:25 +03:00
### All usage examples
You find more detailed documentation at in [/doc ](doc/index.md ) and on
[https://documentation.mailgun.com ](https://documentation.mailgun.com/api_reference.html ).
2016-08-06 11:26:53 +03:00
### Response
2013-08-20 01:46:34 +04:00
2016-12-07 17:59:22 +03:00
The results of a API call is, by default, a domain object. This will make it easy
to understand the response without reading the documentation. One can just read the
2017-03-26 21:42:36 +03:00
doc blocks on the response classes. This provide an excellent IDE integration.
2016-12-07 17:59:22 +03:00
2013-08-20 01:46:34 +04:00
```php
2017-03-26 21:42:36 +03:00
$mg = Mailgun::create('key-example');
2016-12-07 17:59:22 +03:00
$dns = $mg->domains()->show('example.com')->getInboundDNSRecords();
2013-08-20 22:10:57 +04:00
2016-12-07 17:59:22 +03:00
foreach ($dns as $record) {
echo $record->getType();
2013-08-20 22:10:57 +04:00
}
2013-08-20 01:46:34 +04:00
```
2017-03-22 09:44:08 +03:00
If you rather be working with array then object you can inject the `ArrayHydrator`
2016-12-07 17:59:22 +03:00
to the Mailgun class.
2013-08-20 01:46:34 +04:00
2016-12-07 17:59:22 +03:00
```php
2017-03-22 09:44:08 +03:00
use Mailgun\Hydrator\ArrayHydator;
2013-08-20 01:46:34 +04:00
2017-03-26 21:42:36 +03:00
$configurator = new HttpClientConfigurator();
$configurator->setApiKey('key-example');
$mg = Mailgun::configure($configurator, new ArrayHydator());
2016-12-07 17:59:22 +03:00
$data = $mg->domains()->show('example.com');
foreach ($data['receiving_dns_records'] as $record) {
echo isset($record['record_type']) ? $record['record_type'] : null;
2013-08-21 02:01:16 +04:00
}
2013-08-20 01:46:34 +04:00
```
2017-03-22 09:44:08 +03:00
You could also use the `NoopHydrator` to get a PSR7 Response returned from
2016-12-07 17:59:22 +03:00
the API calls.
2017-03-26 21:42:36 +03:00
**Warning: When using `NoopHydrator` there will be no exceptions on a non-200 response.**
2016-08-06 11:26:53 +03:00
### Debugging
2013-12-06 01:58:16 +04:00
Debugging the PHP SDK can be really helpful when things aren't working quite right.
To debug the SDK, here are some suggestions:
Set the endpoint to Mailgun's Postbin. A Postbin is a web service that allows you to
post data, which is then displayed through a browser. This allows you to quickly determine
what is actually being transmitted to Mailgun's API.
**Step 1 - Create a new Postbin.**
Go to http://bin.mailgun.net. The Postbin will generate a special URL. Save that URL.
**Step 2 - Instantiate the Mailgun client using Postbin.**
2017-03-26 17:12:17 +03:00
*Tip: The bin id will be the URL part after bin.mailgun.net. It will be random generated letters and numbers.
For example, the bin id in this URL, http://bin.mailgun.net/aecf68de, is "aecf68de".*
2013-12-06 01:58:16 +04:00
```php
2017-03-26 17:12:17 +03:00
$configurator = new HttpClientConfigurator();
$configurator->setEndpoint('http://bin.mailgun.net/aecf68de');
$configurator->setDebug(true);
$mg = Mailgun::configure($configurator);
2013-12-06 01:58:16 +04:00
# Now, compose and send your message.
2017-04-08 11:45:25 +03:00
$mg->messages()->send('example.com', [
2017-03-26 17:12:17 +03:00
'from' => 'bob@example.com',
'to' => 'sally@example.com',
'subject' => 'The PHP SDK is awesome!',
2017-04-08 11:45:25 +03:00
'text' => 'It is so simple to send a message.'
]);
2013-12-06 01:58:16 +04:00
```
2016-08-06 11:26:53 +03:00
### Additional Info
2013-12-06 01:58:16 +04:00
2013-08-20 01:52:38 +04:00
For usage examples on each API endpoint, head over to our official documentation
pages.
2013-08-08 21:39:44 +04:00
2013-08-21 08:12:44 +04:00
This SDK includes a [Message Builder ](src/Mailgun/Messages/README.md ),
[Batch Message ](src/Mailgun/Messages/README.md ) and [Opt-In Handler ](src/Mailgun/Lists/README.md ) component.
2013-08-03 02:38:08 +04:00
2013-08-20 01:52:38 +04:00
Message Builder allows you to quickly create the array of parameters, required
to send a message, by calling a methods for each parameter.
Batch Message is an extension of Message Builder, and allows you to easily send
a batch message job within a few seconds. The complexity of
2013-08-13 23:26:34 +04:00
batch messaging is eliminated!
2016-08-06 11:26:53 +03:00
## Framework integration
2015-04-18 17:22:29 +03:00
If you are using a framework you might consider these composer packages to make the framework integration easier.
2017-02-21 10:23:10 +03:00
* [tehplague/swiftmailer-mailgun-bundle ](https://github.com/tehplague/swiftmailer-mailgun-bundle ) for Symfony
* [Bogardo/Mailgun ](https://github.com/Bogardo/Mailgun ) for Laravel
2015-04-18 17:22:29 +03:00
* [katanyoo/yii2-mailgun-mailer ](https://github.com/katanyoo/yii2-mailgun-mailer ) for Yii2
2016-11-21 23:35:49 +03:00
## Contribute
We are currently building a new object oriented API client. Feel free to contribute in any way. As an example you may:
* Trying out dev-master the code
* Create issues if you find problems
* Reply to other people's issues
* Review PRs
* Write PR. You find our current milestone [here ](https://github.com/mailgun/mailgun-php/milestone/1 )
### Running the test code
If you want to run the tests you should run the following commands:
```terminal
git clone git@github.com:mailgun/mailgun-php.git
cd mailgun-php
composer update
composer test
```
2016-08-06 11:26:53 +03:00
## Support and Feedback
2013-07-25 10:53:16 +04:00
2013-08-20 01:52:38 +04:00
Be sure to visit the Mailgun official
[documentation website ](http://documentation.mailgun.com/ ) for additional
information about our API.
2013-07-25 10:53:16 +04:00
2013-08-20 01:52:38 +04:00
If you find a bug, please submit the issue in Github directly.
2016-11-21 23:35:49 +03:00
[Mailgun-PHP Issues ](https://github.com/mailgun/mailgun-php/issues )
2013-07-25 10:53:16 +04:00
2014-06-21 02:43:14 +04:00
As always, if you need additional assistance, drop us a note through your Control Panel at
[https://mailgun.com/cp/support ](https://mailgun.com/cp/support ).