email icon indicating copy to clipboard operation
email copied to clipboard

Easily send HTML emails with Golang

email

Build Status GoDoc

Send emails easily.

Example

package main

import "github.com/zemirco/email"

func main() {
  mail := email.Mail{
    From:    "[email protected]",
    To:      "[email protected]",
    Subject: "Hello there",
    HTML:    "<h1>Awesome</h1>",
  }
  err := mail.Send("smtp.amazonaws.com", 587, "user", "password")
  if err != nil {
    panic(err)
  }
}

Test

go test

License

MIT