You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
8
8
9
9
# Table of Contents
10
10
*[Prerequisites and Installation](#prerequisites-and-installation)
@@ -31,7 +31,7 @@ Add the following to your build.gradle file in the root of your project.
Alternately, you can simply [clone this repository](https://github.com/socketlabs/socketlabs-java.git) directly to include the source code in your project.
64
64
@@ -200,6 +200,10 @@ This example demonstrates the results of attempting to do a send with an invalid
200
200
### [Basic send with invalid recipients](https://github.com/socketlabs/socketlabs-java/tree/master/examples/src/main/java/examples/basic/invalid/BasicSendWithInvalidRecipients.java)
201
201
This example demonstrates the results of attempting to do a send with invalid recipients.
202
202
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
+
203
207
### [Bulk send with multiple recipients](https://github.com/socketlabs/socketlabs-java/tree/master/examples/src/main/java/examples/bulk/BulkSend.java)
204
208
This example demonstrates how to send a bulk message to multiple recipients.
205
209
@@ -219,6 +223,9 @@ set and special characters.
219
223
This example demonstrates how to send a bulk message to multiple recipients with
220
224
unique merge data per recipient.
221
225
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/)
0 commit comments