-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.go
43 lines (37 loc) · 962 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package main
import (
"fmt"
"net/http"
"github.com/mattevans/postmark-go"
)
func main() {
// Init client with round tripper adding auth fields.
client := postmark.NewClient(
postmark.WithClient(&http.Client{
Transport: &postmark.AuthTransport{Token: "SERVER_API_TOKEN"},
}),
)
// Slice of recievers
receivers := []string{
}
// Build emails
emailRequests := []*postmark.Email{}
for _, receiver := range receivers {
emailRequests = append(emailRequests, &postmark.Email{
From: "[email protected]",
To: receiver,
Subject: "My Test Email",
HTMLBody: "<html><body><strong>Hello</strong> dear Postmark user.</body></html>",
TextBody: "Hello dear Postmark user",
Tag: "onboarding",
TrackOpens: true,
})
}
// Send them!
_, response, err := client.Email.SendBatch(emailRequests)
if err != nil {
fmt.Printf("ERR: \n%v\n%v\n", response, err)
}
}