2016-08-06 11:26:53 +03:00
# Mailgun PHP client
2013-07-26 03:18:32 +04:00
2019-09-13 23:08:48 +03: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 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-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-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
```
2019-09-13 23:08:48 +03:00
The Mailgun API Client is not hard coupled to Guzzle, Buzz or any other library that sends
HTTP messages. Instead, it uses the [PSR-18 ](https://www.php-fig.org/psr/psr-18/ ) client abstraction.
This will give you the flexibility to choose what
[PSR-7 implementation and HTTP client ](https://packagist.org/providers/php-http/client-implementation )
you want 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
2019-02-03 20:07:20 +03:00
composer require mailgun/mailgun-php kriswallsmith/buzz nyholm/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
## Usage
2013-08-04 01:58:35 +04:00
2019-09-13 23:08:48 +03:00
You should always use Composer autoloader in your application to automatically load
2019-02-03 20:16:30 +03:00
your dependencies. All the examples below assume you've already included this in your
2019-02-03 20:07:20 +03:00
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
2019-02-02 10:09:51 +03:00
// First, instantiate the SDK with your API credentials
$mg = Mailgun::create('key-example'); // For US servers
$mg = Mailgun::create('key-example', 'https://api.eu.mailgun.net'); // For EU servers
2013-08-08 21:39:44 +04:00
2019-02-02 10:09:51 +03:00
// Now, compose and send your message.
// $mg->messages()->send($domain, $params);
2017-04-20 04:36:11 +03:00
$mg->messages()->send('example.com', [
2017-07-13 10:36:36 +03:00
'from' => 'bob@example.com',
'to' => 'sally@example.com',
'subject' => 'The PHP SDK is awesome!',
2017-03-26 21:42:36 +03:00
'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-07-13 10:36:36 +03:00
Attention: `$domain` must match to the domain you have configured on [app.mailgun.com ](https://app.mailgun.com/app/domains ).
2017-04-08 11:45:25 +03:00
### All usage examples
2019-09-13 23:08:48 +03:00
You will find more detailed documentation at [/doc ](doc/index.md ) and on
2017-04-08 11:45:25 +03:00
[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
2017-12-05 18:00:22 +03:00
The result of an API call is, by default, a domain object. This will make it easy
2016-12-07 17:59:22 +03:00
to understand the response without reading the documentation. One can just read the
2017-12-05 18:00:22 +03:00
doc blocks on the response classes. This provides 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-12-05 18:00:22 +03:00
If you'd rather work with an array than an 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-06-10 13:59:22 +03:00
use Mailgun\Hydrator\ArrayHydrator;
2013-08-20 01:46:34 +04:00
2017-03-26 21:42:36 +03:00
$configurator = new HttpClientConfigurator();
$configurator->setApiKey('key-example');
2019-09-16 15:42:13 +03:00
$mg = new Mailgun($configurator, new ArrayHydrator());
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-12-05 18:00:22 +03:00
You can 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
2019-09-13 23:08:48 +03:00
Debugging the PHP SDK can be helpful when things aren't working quite right.
2013-12-06 01:58:16 +04:00
To debug the SDK, here are some suggestions:
2019-09-13 23:08:48 +03:00
Set the endpoint to Mailgun's Postbin. A Postbin is a web service that allows you to
post data, which then you can display it through a browser. Using Postbin is an easy way
to quickly determine what data you're transmitting to Mailgun's API.
2013-12-06 01:58:16 +04:00
**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.
2019-09-13 23:08:48 +03:00
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);
2019-09-16 15:42:13 +03:00
$mg = new Mailgun($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
2017-08-02 21:07:21 +03:00
* [narendravaghela/cakephp-mailgun ](https://github.com/narendravaghela/cakephp-mailgun ) for CakePHP
2019-02-02 17:18:00 +03:00
* [drupal/mailgun ](https://www.drupal.org/project/mailgun ) for Drupal
2015-04-18 17:22:29 +03:00
2016-11-21 23:35:49 +03:00
## Contribute
2019-09-13 23:08:48 +03:00
This SDK is an Open Source under the MIT license. It is, thus, maintained by collaborators and contributors.
Feel free to contribute in any way. As an example you may:
* Trying out the `dev-master` code
2016-11-21 23:35:49 +03:00
* Create issues if you find problems
* Reply to other people's issues
* Review PRs
### 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
2018-10-28 05:55:01 +03:00
As always, if you need additional assistance, drop us a note through your account at
2018-10-29 00:40:20 +03:00
[https://app.mailgun.com/app/support/list ](https://app.mailgun.com/app/support/list ).