Releases: Bogardo/Mailgun
5.2.0: Merge pull request #157 from markokeeffe/raw-message-split
5.1.0: Merge pull request #152 from chrisrollins65/patch-1
Update Carbon in Composer to match Laravel 5.8
v5.0.4
v3.1.7: Merge pull request #47 from codivist/master
Force usage of the Mailgun API key when sending a message. Fixes #46
Fix incorrect namespacing and switch to psr-4
This release fixes some incorrect namespacing errors.
I've also changed the autoloading method to psr-4 and changed the minimum-stability to stable
.
Laravel 4.2 compatibility
Added compatibility for Laravel 4.2.
From the Laravel Docs
If you are directly referencing the
Illuminate\View\Environment
class orIlluminate\Pagination\Environment
class, update your code to referenceIlluminate\View\Factory
andIlluminate\Pagination\Factory
instead. These two classes have been renamed to better reflect their function.
Fixes conflicts with newer versions of Guzzle
Added ability to add campaign ID(s) to a message
This release adds the ability to add one or multiple campaign ID's to a message using the new campaign
method.
Requested by @GrandadEvans in #19.
This method accepts a single ID or an array of ID's with a maximum of 3 ID's (limit is set by Mailgun). If more than 3 ID's are provided Mailgun will automatically omit the remaining ID's.
$campaigns = array(
'campaign-ID-1',
'campaign-ID-2',
'campaign-ID-3'
);
$message->campaign($campaigns);
or
$message->campaign('campaign-ID');
I'll start tagging versions from now on. I previously messed the version numbers up a bit because of the compatibility issues with Laravel 4.1 and 4.0.
I'm going to resume from where I left off (v2.0)
v2.0 compatible with Laravel 4.1
Support for Laravel 4.0 dropped.
If you're still on Laravel 4.0 please use v1.0
v1.0 compatible with Laravel 4.0
Stable version for Laravel 4.0
If you're using Laravel 4.1 please use Bogardo/Mailgun v2.0.