Skip to content

Commit fee349e

Browse files
1.1.0 Release
1 parent 22d5d09 commit fee349e

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
[![SocketLabs](https://www.socketlabs.com/assets/socketlabs-logo1.png)](https://www.socketlabs.com)
1+
[![SocketLabs](https://static.socketlabs.com/logos/logo-light-326x64.png | width=240)](https://www.socketlabs.com)
22
# [![Twitter Follow](https://img.shields.io/twitter/follow/socketlabs.svg?style=social&label=Follow)](https://twitter.com/socketlabs) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/socketlabs/socketlabs-java/blob/master/CONTRIBUTING.md)
33
<!--
44
[![GitHub contributors](https://img.shields.io/github/contributors/socketlabs/socketlabs-java.svg)](https://github.com/socketlabs/socketlabs-java/graphs/contributors)
55
-->
66

7-
The SocketLabs Email Delivery Java library allows you to easily send email messages via the [SocketLabs Injection API](https://www.socketlabs.com/api-reference/injection-api/). The library makes it easy to build and send any type of message supported by the API, from a simple message to a single recipient all the way to a complex bulk message sent to a group of recipients with unique merge data per recipient.
7+
The SocketLabs Email Delivery Java library allows you to easily send email messages via the [SocketLabs Injection API](https://www.socketlabs.com/docs/inject/). The library makes it easy to build and send any type of message supported by the API, from a simple message to a single recipient all the way to a complex bulk message sent to a group of recipients with unique merge data per recipient.
88

99
# Table of Contents
1010
* [Prerequisites and Installation](#prerequisites-and-installation)
@@ -31,7 +31,7 @@ Add the following to your build.gradle file in the root of your project.
3131
...
3232
dependencies {
3333
...
34-
compile group: 'com.socketlabs', name: 'injectionApi', version: '1.0.5'
34+
compile group: 'com.socketlabs', name: 'injectionApi', version: '1.1.0'
3535
}
3636
3737
repositories {
@@ -46,19 +46,19 @@ repositories {
4646
<dependency>
4747
<groupId>com.socketlabs</groupId>
4848
<artifactId>injectionApi</artifactId>
49-
<version>1.0.5</version>
49+
<version>1.1.0</version>
5050
</dependency>
5151
```
5252

5353
### via jar file
5454

5555
You can just drop the jar file in.
5656

57-
[injectionApi-1.0.5.jar](https://github.com/socketlabs/socketlabs-java/releases/download/1.0.5/injectionApi-1.0.5.jar)
57+
[injectionApi-1.1.0.jar](https://github.com/socketlabs/socketlabs-java/releases/download/1.1.0/injectionApi-1.1.0.jar)
5858

59-
[injectionApi-1.0.5-sources.jar](https://github.com/socketlabs/socketlabs-java/releases/download/1.0.5/injectionApi-1.0.5-sources.jar)
59+
[injectionApi-1.1.0-sources.jar](https://github.com/socketlabs/socketlabs-java/releases/download/1.1.0/injectionApi-1.1.0-sources.jar)
6060

61-
[injectionApi-1.0.5-javadoc.jar](https://github.com/socketlabs/socketlabs-java/releases/download/1.0.5/injectionApi-1.0.5-javadoc.jar)
61+
[injectionApi-1.1.0-javadoc.jar](https://github.com/socketlabs/socketlabs-java/releases/download/1.1.0/injectionApi-1.1.0-javadoc.jar)
6262

6363
Alternately, you can simply [clone this repository](https://github.com/socketlabs/socketlabs-java.git) directly to include the source code in your project.
6464

@@ -200,6 +200,10 @@ This example demonstrates the results of attempting to do a send with an invalid
200200
### [Basic send with invalid recipients](https://github.com/socketlabs/socketlabs-java/tree/master/examples/src/main/java/examples/basic/invalid/BasicSendWithInvalidRecipients.java)
201201
This example demonstrates the results of attempting to do a send with invalid recipients.
202202

203+
### [Basic send with Amp ](https://github.com/socketlabs/socketlabs-java/tree/master/examples/src/main/java/examples/basic/BasicSendWithAmpBodyExample.java)
204+
This example demonstrates how to send a basic message with an AMP Html body.
205+
For more information about AMP please see [AMP Project](https://amp.dev/documentation/)
206+
203207
### [Bulk send with multiple recipients](https://github.com/socketlabs/socketlabs-java/tree/master/examples/src/main/java/examples/bulk/BulkSend.java)
204208
This example demonstrates how to send a bulk message to multiple recipients.
205209

@@ -219,6 +223,9 @@ set and special characters.
219223
This example demonstrates how to send a bulk message to multiple recipients with
220224
unique merge data per recipient.
221225

226+
### [Bulk send with Amp ](https://github.com/socketlabs/socketlabs-java/tree/master/examples/src/main/java/examples/bulk/BulkSendWithAmpBodyExample.java)
227+
This example demonstrates how to send a bulk message with an AMP Html body.
228+
For more information about AMP please see [AMP Project](https://amp.dev/documentation/)
222229

223230
<a name="license"></a>
224231
# License

0 commit comments

Comments
 (0)