Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.28 KB

File metadata and controls

35 lines (25 loc) · 1.28 KB

Go client for Forward Email

Forward Email SDK Tests Go Report Card Go Reference Go Version License

How to install

$ go get github.com/forwardemail/forwardemail-api-go

Basic usage

import "github.com/forwardemail/forwardemail-api-go/forwardemail"

client, err := forwardemail.NewClient(forwardemail.ClientOptions{
    APIKey: key,
})
if err != nil {
    log.Fatal(err)
}

account, err := client.GetAccount()