Go SDK for Engagespot
go get github.com/ssiyad/engagespot-gopackage main
import "github.com/ssiyad/engagespot-go"
func main() {
c := engagespot.NewEngagespotClient("API_KEY", "API_SECRET")
n, _ := c.NewNotification("Hello world!")
n.SetMessage("Let's go!")
n.SetIcon("https://example.com/icon.svg")
n.SetUrl("https://example.com")
n.SetCategory("greet")
n.AddRecipient("hello@example.com")
n.Send()
}