Skip to content

Instantly share code, notes, and snippets.

View AbdouB's full-sized avatar
☄️

Abdelilah Benhima AbdouB

☄️
  • Flink SE
  • Berlin, Germany
View GitHub Profile
@AbdouB
AbdouB / email.go
Created June 17, 2020 17:02 — forked from carelvwyk/email.go
Building an email in Golang to be delivered using Amazon SES
func buildEmailInput(source, destination, subject, message string,
csvFile []byte) (*ses.SendRawEmailInput, error) {
buf := new(bytes.Buffer)
writer := multipart.NewWriter(buf)
// email main header:
h := make(textproto.MIMEHeader)
h.Set("From", source)