Skip to content

Commit b8ce587

Browse files
Update Readme.md
1 parent b883351 commit b8ce587

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![SocketLabs](https://www.socketlabs.com/assets/socketlabs-logo1.png)](https://www.socketlabs.com)
2-
# [![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-go/blob/master/CONTRIBUTING.md)
1+
[![SocketLabs](https://static.socketlabs.com/logos/logo-dark-326x64.png)](https://www.socketlabs.com/developers)
2+
# [![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-nodejs/blob/master/CONTRIBUTING.md)
33

4-
The SocketLabs Email Delivery Go package 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.
4+
The SocketLabs Email Delivery Go package 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.
55

66
# Table of Contents
77
* [Prerequisites and Installation](#prerequisites-and-installation)
@@ -75,7 +75,7 @@ func main() {
7575
A bulk message usually contains a single recipient per message
7676
and is generally used to send the same content to many recipients,
7777
optionally customizing the message via the use of MergeData.
78-
For more information about using Merge data, please see the [Injection API documentation](https://www.socketlabs.com/api-reference/injection-api/#merging).
78+
For more information about using Merge data, please see the [Injection API documentation](https://www.socketlabs.com/docs/inject/).
7979
```GO
8080
import (
8181
"github.com/socketlabs/socketlabs-go/injectionapi"
@@ -150,6 +150,10 @@ This example demonstrates how to embed an image in your message.
150150
### [Basic send with a web proxy](https://github.com/socketlabs/socketlabs-go/blob/master/examples/basic/BasicSendWithProxy/BasicSendWithProxy.go)
151151
This example demonstrates how to use a proxy with your HTTP client.
152152

153+
### [Basic send with Amp ](https://github.com/socketlabs/socketlabs-go/blob/main/examples/basic/BasicWithAmpBody/BasicWithAmpBody.go)
154+
This example demonstrates how to send a basic message with an AMP Html body.
155+
For more information about AMP please see [AMP Project](https://amp.dev/documentation/)
156+
153157

154158
### [Basic send with invalid file attachment](https://github.com/socketlabs/socketlabs-go/blob/master/examples/basic/Invalid/BasicWithInvalidAttachment/BasicWithInvalidAttachment.go)
155159
This example demonstrates the results of attempting to do a send with an invalid attachment.
@@ -180,6 +184,16 @@ set and special characters.
180184
This example demonstrates how to send a bulk message to multiple recipients with
181185
unique merge data per recipient.
182186

187+
### [Bulk send with Amp ](https://github.com/socketlabs/socketlabs-go/blob/main/examples/bulk/BulkWithAmpBody/BulkWithAmpBody.go)
188+
This example demonstrates how to send a bulk message with an AMP Html body.
189+
For more information about AMP please see [AMP Project](https://amp.dev/documentation/)
190+
191+
192+
<a name="version"></a>
193+
# Version
194+
* 1.1.0 - Adds Amp Html Support
195+
* 1.0.0 - Initial Release
196+
183197

184198
<a name="license"></a>
185199
# License

0 commit comments

Comments
 (0)