Simple utility to send emails via AWS SES.
Although this task can be done with cURL, this command is meant to save you some troubles with the API and future-proof it.
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!"