https://github.com/shindakun/mailgunner
A super simplistic send only implementation of a Mailgun client in Go.
https://github.com/shindakun/mailgunner
go golang mailgun
Last synced: 6 months ago
JSON representation
A super simplistic send only implementation of a Mailgun client in Go.
- Host: GitHub
- URL: https://github.com/shindakun/mailgunner
- Owner: shindakun
- Created: 2019-01-03T04:47:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-05T05:22:52.000Z (almost 7 years ago)
- Last Synced: 2025-02-15T12:49:48.267Z (8 months ago)
- Topics: go, golang, mailgun
- Language: Go
- Homepage: https://dev.to/shindakun/attempting-to-learn-go---lets-get-modular-390i
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mailgunner
A super simplistic send only implementation of a [Mailgun](https://www.mailgun.com/) client in Go.
## Installation
Use as a module, import `github.com/shindakun/mailgunner/v2`, then run
```bash
go mod init module
go build
```If you are new to modules checkout my post on [Dev.to for some more details](https://dev.to/shindakun/attempting-to-learn-go---lets-get-modular-390i).
```bash
go get github.com/shindakun/mailgunner
```## Usage
See [example/main.go](./example/main.go) for a usage example.
## Change log
- Updated `New()` to take http.Client so we don't have to rely on `http.DefaultClient`