Go to file
Alexandre Cesaro dc65e3e648 Added Go 1.6 to Travis 2016-03-05 17:16:47 +01:00
.travis.yml Added Go 1.6 to Travis 2016-03-05 17:16:47 +01:00
CHANGELOG.md Bumped version to v2 2015-09-02 13:43:40 +02:00
CONTRIBUTING.md Updated CONTRIBUTING.md 2015-07-29 22:47:37 +02:00
LICENSE Initial commit 2014-10-15 17:47:07 +02:00
README.md Removed the support section of the readme 2016-03-05 17:16:04 +01:00
auth.go Fixed PLAIN authentication 2015-07-29 22:47:37 +02:00
auth_test.go Fixed PLAIN authentication 2015-07-29 22:47:37 +02:00
doc.go Moved the package description to doc.go 2015-07-29 22:47:37 +02:00
example_test.go Fixed an example name 2015-12-12 17:01:51 +01:00
message.go Provided a way to specify the encoding of a message part 2015-12-12 16:40:02 +01:00
message_test.go Provided a way to specify the encoding of a message part 2015-12-12 16:40:02 +01:00
mime.go Lowered Go version requirement from 1.5 to 1.2 2015-07-29 22:47:36 +02:00
mime_go14.go Lowered Go version requirement from 1.5 to 1.2 2015-07-29 22:47:36 +02:00
send.go Added examples 2015-08-23 18:55:53 +02:00
send_test.go Replaced Message.Export by Message.WriteTo 2015-07-29 22:47:36 +02:00
smtp.go Make Dialer's domain configurable 2015-10-22 11:00:33 +02:00
smtp_test.go Make Dialer's domain configurable 2015-10-22 11:00:33 +02:00
writeto.go Provided a way to specify the encoding of a message part 2015-12-12 16:40:02 +01:00

README.md

Gomail

Build Status Code Coverage Documentation

Introduction

Gomail is a simple and efficient package to send emails. It is well tested and documented.

Gomail can only send emails using an SMTP server. But the API is flexible and it is easy to implement other methods for sending emails using a local Postfix, an API, etc.

It is versioned using gopkg.in so I promise there will never be backward incompatible changes within each version.

It requires Go 1.2 or newer. With Go 1.5, no external dependencies are used.

Features

Gomail supports:

  • Attachments
  • Embedded images
  • HTML and text templates
  • Automatic encoding of special characters
  • SSL and TLS
  • Sending multiple emails with the same SMTP connection

Documentation

https://godoc.org/gopkg.in/gomail.v2

Download

go get gopkg.in/gomail.v2

Examples

See the examples in the documentation.

FAQ

x509: certificate signed by unknown authority

If you get this error it means the certificate used by the SMTP server is not considered valid by the client running Gomail. As a quick workaround you can bypass the verification of the server's certificate chain and host name by using SetTLSConfig:

d := gomail.NewPlainDialer("smtp.example.com", "user", "123456", 587)
d.TLSConfig = &tls.Config{InsecureSkipVerify: true}

Note, however, that this is insecure and should not be used in production.

Contribute

Contributions are more than welcome! See CONTRIBUTING.md for more info.

Change log

See CHANGELOG.md.

License

MIT

Contact

You can ask questions on the Gomail thread in the Go mailing-list.