Categorygithub.com/tylerb/sendwithus_go
repositorypackage
0.0.2
Repository: https://github.com/tylerb/sendwithus_go.git
Documentation: pkg.go.dev

# README

SendWithUs-Go

This is a simple package to interface with SendWithUs using Golang.

Installation

$ go get github.com/elbuo8/sendwithus_go

Example

This is a brief example on how to send 1 email. You can find more examples by looking at the test cases.

package main

import (
  "github.com/tylerb/sendwithus_go"
  "fmt"
)

func main() {
	api := swu.New("SWU_KEY")
	email := &swu.Email{
		ID: "EMAIL_TEMPLATE_ID",
		Recipient: &swu.Recipient{
			Address: "[email protected]",
		},
		EmailData: make(map[string]string),
	}
	err := api.Send(email)
	if err != nil {
      fmt.Println(err)
	}
}

Documentation (GoDoc)

MIT License

Enjoy! Feel free to send pull requests or submit issues :)