Skip to content
This repository has been archived by the owner on Dec 22, 2019. It is now read-only.

Releases: Bogardo/Mailgun

5.2.0: Merge pull request #157 from markokeeffe/raw-message-split

16 Oct 22:20
86aca9f
Compare
Choose a tag to compare
Allow raw message to have separate html/text parts

5.1.0: Merge pull request #152 from chrisrollins65/patch-1

04 Jun 12:21
5ad0da1
Compare
Choose a tag to compare
Update Carbon in Composer to match Laravel 5.8

v5.0.4

13 Oct 23:00
faf483c
Compare
Choose a tag to compare
Merge pull request #147 from jni-heyloyalty/patch-1

Fix handling of empty body in ctor

v3.1.7: Merge pull request #47 from codivist/master

28 Apr 17:26
Compare
Choose a tag to compare
Force usage of the Mailgun API key when sending a message.
Fixes #46

Fix incorrect namespacing and switch to psr-4

26 Feb 23:38
Compare
Choose a tag to compare

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

12 Jul 18:52
Compare
Choose a tag to compare

Added compatibility for Laravel 4.2.

From the Laravel Docs

If you are directly referencing the Illuminate\View\Environment class or Illuminate\Pagination\Environment class, update your code to reference Illuminate\View\Factory and Illuminate\Pagination\Factory instead. These two classes have been renamed to better reflect their function.

Fixes conflicts with newer versions of Guzzle

12 Jun 00:14
Compare
Choose a tag to compare

This packages now requires mailgun-php 1.7.*
Since mailgun-php 1.7.1 there is a less restrictive requirement for the version of Guzzle, including this newer version solves a conflict with the Guzzle version some people might experience.

Thanks to @codivist #18

Added ability to add campaign ID(s) to a message

11 Jun 23:53
Compare
Choose a tag to compare

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

17 Dec 01:13
Compare
Choose a tag to compare

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

17 Dec 01:13
Compare
Choose a tag to compare

Stable version for Laravel 4.0

If you're using Laravel 4.1 please use Bogardo/Mailgun v2.0.