

GitHub - go-mail/mail: Actively maintained fork of gomail. The best way to send...
source link: https://github.com/go-mail/mail
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md
Gomail
This is an actively maintained fork of Gomail and includes fixes and improvements for a number of outstanding issues. The current progress is as follows:
- Timeouts and retries can be specified outside of the 10 second default.
- Proxying is supported through specifying a custom NetDialTimeout.
- Filenames are properly encoded for non-ASCII characters.
- Email addresses are properly encoded for non-ASCII characters.
- Embedded files and attachments are tested for their existence.
- An
io.Reader
can be supplied when embedding and attaching files.
See Transitioning Existing Codebases for more information on switching.
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 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/github.com/go-mail/mail
Download
If you're already using a dependency manager, like dep, use the following import path:
github.com/go-mail/mail
If you aren't using vendoring, go get
the Gopkg.in
import path:
gopkg.in/mail.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/mail.v2" ) func main() { d := mail.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.
Transitioning Existing Codebases
If you're already using the original Gomail, switching is as easy as updating the import line to:
import gomail "gopkg.in/mail.v2"
Contribute
Contributions are more than welcome! See CONTRIBUTING.md for more info.
Change log
See CHANGELOG.md.
License
Support & Contact
You can ask questions on the Gomail thread in the Go mailing-list.
Recommend
-
137
Universal Ctags Universal Ctags (abbreviated as u-ctags) is a maintained implementation of ctags. ctags generates an index (or tag) file of language object...
-
53
README.md
-
52
README.md Suricata Introduction Suricata is a network IDS, IPS and NSM engine. Installation
-
40
README.md Gomail
-
13
01 介绍 我们在项目开发中,经常会遇到发送邮件的需求,比如给开发人员发送报警邮件,给用户发送优惠券或兑换码等。 Gomail 是发送电子邮件的简单高效的包。它已经过充分测试和记录。Gomail 只能使用 SMTP 服务器发送电子邮件。但是...
-
5
Nextcord A modern, easy-to-use, feature-rich, and async-ready API wrapper for Discord written in Python. Fork notice This is a fork of discord.py, which unfortunately has been
-
10
--- **NOTE** This repo contains Org-roam v1, which is no longer actively maintained. Consider migrating to [latest Org-roam](https://github.com/org-roam/org-roam/). --- Org-roam v1 Org-roam is a plain-text...
-
7
Golang:Gomail一个简单高效的电子邮件发送包 精选 原创 彭世瑜 2022-09-19 10:37...
-
4
【代码】Go语言通过gomail发送邮件 2023-03-28 ...
-
7
Report Finds Few Open Source Projects are Actively Maintained Follow Sl...
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK