Based on the "Email" category.
Alternatively, viewgo-simple-mail alternatives based on common mentions on social networks and blogs.
Do you think we are missing an alternative of go-simple-mail or a related project?
The best way to send emails in Go with SMTP Keep Alive and Timeout for Connect and Send.
Examples in this README are for v2.2.0 and above. Examples for older versionscan be foundhere.
The minimum Go version is 1.13, for Go 1.12 and older use branchgo1.12
.
Breaking change in 2.2.0: The signature ofSetBody
andAddAlternative
usedto accept strings ("text/html" and "text/plain") and not require on of thecontentType
constants (TextHTML
orTextPlain
). Upgrading, while notquite following semantic versioning, is quite simple:
email := mail.NewMSG()- email.SetBody("text/html", htmlBody)- email.AddAlternative("text/plain", plainBody)+ email.SetBody(mail.TextHTML, htmlBody)+ email.AddAlternative(mail.TextPlain, plainBody)
Go Simple Mail is a simple and efficient package to send emails. It is well tested anddocumented.
Go Simple Mail can only send emails using an SMTP server. But the API is flexible and itis easy to implement other methods for sending emails using a local Postfix, an API, etc.
This package contains (and is based on) two packages byJoe Grasse:
A lot of changes in Go Simple Mail were sent with not response.
Go Simple Mail supports:
https://pkg.go.dev/github.com/xhit/go-simple-mail/v2?tab=doc
This package uses go modules.
$ go get github.com/xhit/go-simple-mail/v2
package mainimport ( "log" "github.com/xhit/go-simple-mail/v2")const htmlBody = `<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Hello Gophers!</title> </head> <body> <p>This is the <b>Go gopher</b>.</p> <p><img src="cid:Gopher.png" alt="Go gopher" /></p> <p>Image created by Renee French</p> </body></html>`func main() { server := mail.NewSMTPClient() // SMTP Server server.Host = "smtp.example.com" server.Port = 587 server.Username = "[email protected]" server.Password = "examplepass" server.Encryption = mail.EncryptionSTARTTLS // Since v2.3.0 you can specified authentication type: // - PLAIN (default) // - LOGIN // - CRAM-MD5 // - None // server.Authentication = mail.AuthPlain // Variable to keep alive connection server.KeepAlive = false // Timeout for connect to SMTP Server server.ConnectTimeout = 10 * time.Second // Timeout for send the data and wait respond server.SendTimeout = 10 * time.Second // Set TLSConfig to provide custom TLS configuration. For example, // to skip TLS verification (useful for testing): server.TLSConfig = &tls.Config{InsecureSkipVerify: true} // SMTP client smtpClient,err := server.Connect() if err != nil{ log.Fatal(err) } // New email simple html with inline and CC email := mail.NewMSG() email.SetFrom("From Example <[email protected]>"). AddTo("[email protected]"). AddCc("[email protected]"). SetSubject("New Go Email") email.SetBody(mail.TextHTML, htmlBody) // also you can add body from []byte with SetBodyData, example: // email.SetBodyData(mail.TextHTML, []byte(htmlBody)) // or alternative part // email.AddAlternativeData(mail.TextHTML, []byte(htmlBody)) // add inline email.Attach(&mail.File{FilePath: "/path/to/image.png", Name:"Gopher.png", Inline: true}) // always check error after send if email.Error != nil{ log.Fatal(email.Error) } // Call Send and pass the client err = email.Send(smtpClient) if err != nil { log.Println(err) } else { log.Println("Email Sent") }}
//Set your smtpClient struct to keep alive connection server.KeepAlive = true for _, to := range []string{ "[email protected]", "[email protected]", "[email protected]", } { // New email simple html with inline and CC email := mail.NewMSG() email.SetFrom("From Example <[email protected]>"). AddTo(to). SetSubject("New Go Email") email.SetBody(mail.TextHTML, htmlBody) // add inline email.Attach(&mail.File{FilePath: "/path/to/image.png", Name:"Gopher.png", Inline: true}) // always check error after send if email.Error != nil{ log.Fatal(email.Error) } // Call Send and pass the client err = email.Send(smtpClient) if err != nil { log.Println(err) } else { log.Println("Email Sent") } }
See [example/example_test.go](example/example_test.go).
Do not miss the trending, packages, news and articles with ourweekly report.