Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 1 KB

README.md

File metadata and controls

30 lines (19 loc) · 1 KB

Codacy Badge Follow on Twitter

go-ses2email

Simple utility to send emails via AWS SES.

Rationale

Although this task can be done with cURL, this command is meant to save you some troubles with the API and future-proof it.

Getting Started

To install ses2email simply do:

$ go get github.com/opendevsecops/go-ses2email

Once the command is installed in your home go/bin folder execute it like this:

$ ~/go/bin/go-ses2email --help

To send message to slack simply do:

$ ~/go/bin/go-ses2email --from "from@domain.com" --to "to@domain.com" --subject "Your subject" --html "Your html message!" --text "Your text message!"