Skip to content

Releases: jakebreen/android-sendgrid

1.4.0

18 Jan 14:07
9351461

Choose a tag to compare

Add unsubscribe groups

1.3.1

22 Sep 08:49
76cf563

Choose a tag to compare

Rethrow exceptions during async call

Release 1.3.0

19 Jul 15:29
ba84167

Choose a tag to compare

Migrate library to sdk 32 (Android 12L)

Release 1.2.3

24 Apr 22:37
b6c202c

Choose a tag to compare

Fix bug where an empty html content override the plain text content body.

Release 1.2.2

02 Feb 00:50
b635b1c

Choose a tag to compare

Fix a bug where an empty content block would return a 400 response from the server when using a template.
Ensure that both plain and html text types are present in the mail body even when the user leaves them empty.

Pre-Release 1.2.2

31 Jan 11:04
5937212

Choose a tag to compare

Pre-Release 1.2.2 Pre-release
Pre-release

Fix a bug where an empty content block would return a 400 response from the server when using a template.
Ensure that both plain and html text types are present in the mail body even when the user leaves them empty.

1.2.1

15 Jan 14:50
4f0c6e2

Choose a tag to compare

Fix issue where reply-to parameter was not being added to the mail.

1.2.0

15 Jan 13:11
4e8eb15

Choose a tag to compare

Release 1.2.0

Transactional email templates and custom data can be applied to the SendGridMail in the form of a JSONObject structured into key/value pairs

mail.setTemplateId(@NonNull String templateId)
mail.setDynamicTemplateData(@NonNull JSONObject jsonObject)

// payload
final JSONObject templateData = new JSONObject();
templateData.put("forename", "Jane");
templateData.put("surname", "Doe");
templateData.put("message", "Hello, This is my email");

Fixed bug where CC and BCC contacts would not be applied to the email being sent.

Release 1.1.0

29 Nov 22:23

Choose a tag to compare

Added Tracking Settings, click-tracking, open-tracking and subscription-tracking.