Skip to content

Releases: sargue/mailgun

v1.3.2

24 Jan 10:29
Compare
Choose a tag to compare

fixed jersey dependency that targets java 1.8

v1.3.1

13 Dec 18:13
Compare
Choose a tag to compare

MailBuilder support for null name, to reduce burden of user

v1.3.0

26 Oct 06:37
Compare
Choose a tag to compare
  • New method to retrieve the body of the response. Useful to check more information in the event of errors.

v1.2.0

27 Jul 21:19
Compare
Choose a tag to compare
  • New method to add inline images thanks to Lance Reid. See PR.

v1.1.0

13 Jun 15:26
Compare
Choose a tag to compare
  • New fire and forget async send method. See Mail.sendAsync().
  • Some notable changes on the content generation helpers. More info
    in the wiki
    The main code for sending simple mails hasn't changed.
    TL;DR Don't use MailBuilder anymore, use Mail.bodyBuilder().

Migration guide:

Where you had

MailContent mailContent = new MailContent()
     [content stuff here]
     .close();

MailBuilder.using(configuration)
     .content(mailContent)
     [mail envelope stuff here]
     .build()
     .send();

You can translate it to this beauty:

Mail.using(configuration)
    .body()
    [content stuff here]
    .mail()
    [mail envelope stuff here]
    .build()
    .send();

First release

15 Feb 16:26
Compare
Choose a tag to compare

First release