Go to file
slavikm 4291610152 Added an option to manually set filename of attachments
Fixes #55
Fixes #56
2016-04-01 10:05:10 +02: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 Dialer.Dial() now automatically uses CRAM-MD5 when it's available 2016-03-06 19:17:01 +01:00
auth.go Dialer.Dial() now automatically uses CRAM-MD5 when it's available 2016-03-06 19:17:01 +01:00
auth_test.go Dialer.Dial() now automatically uses CRAM-MD5 when it's available 2016-03-06 19:17:01 +01:00
doc.go Moved the package description to doc.go 2015-07-29 22:47:37 +02:00
example_test.go Added an option to manually set filename of attachments 2016-04-01 10:05:10 +02:00
message.go Added an option to manually set filename of attachments 2016-04-01 10:05:10 +02:00
message_test.go Added an option to manually set filename of attachments 2016-04-01 10:05:10 +02:00
mime.go Added automatic folding of long header lines 2016-03-16 23:42:32 +01:00
mime_go14.go Added automatic folding of long header lines 2016-03-16 23:42:32 +01: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 smtpSender.Send() now automatically redials in case of a timeout 2016-03-14 13:43:57 +01:00
smtp_test.go smtpSender.Send() now automatically redials in case of a timeout 2016-03-14 13:43:57 +01:00
writeto.go Do not insert a newline as the first character of a header 2016-03-30 19:05:19 +02: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:

package main

import (
	"crypto/tls"

	"gopkg.in/gomail.v2"
)

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

    // Send emails using d.
}

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.