gomail/message.go

309 lines
7.3 KiB
Go
Raw Normal View History

2014-10-15 23:47:07 +08:00
// Package gomail provides a simple interface to send emails.
//
// More info on Github: https://github.com/go-gomail/gomail
package gomail
import (
"bytes"
"io"
"io/ioutil"
"mime"
"os"
2014-10-15 23:47:07 +08:00
"path/filepath"
"time"
)
// Message represents an email.
type Message struct {
header header
parts []part
attachments []*File
embedded []*File
charset string
encoding Encoding
hEncoder mime.WordEncoder
buf bytes.Buffer
2014-10-15 23:47:07 +08:00
}
type header map[string][]string
type part struct {
contentType string
copier func(io.Writer) error
2014-10-15 23:47:07 +08:00
}
// NewMessage creates a new message. It uses UTF-8 and quoted-printable encoding
// by default.
func NewMessage(settings ...MessageSetting) *Message {
msg := &Message{
header: make(header),
charset: "UTF-8",
encoding: QuotedPrintable,
}
msg.applySettings(settings)
if msg.encoding == Base64 {
msg.hEncoder = mime.BEncoding
2014-10-15 23:47:07 +08:00
} else {
msg.hEncoder = mime.QEncoding
2014-10-15 23:47:07 +08:00
}
return msg
}
func (msg *Message) applySettings(settings []MessageSetting) {
for _, s := range settings {
s(msg)
}
}
// A MessageSetting can be used as an argument in NewMessage to configure an
// email.
type MessageSetting func(msg *Message)
// SetCharset is a message setting to set the charset of the email.
//
// Example:
//
2014-10-20 22:39:30 +08:00
// msg := gomail.NewMessage(SetCharset("ISO-8859-1"))
2014-10-15 23:47:07 +08:00
func SetCharset(charset string) MessageSetting {
return func(msg *Message) {
msg.charset = charset
}
}
// SetEncoding is a message setting to set the encoding of the email.
//
// Example:
//
2014-10-20 22:39:30 +08:00
// msg := gomail.NewMessage(SetEncoding(gomail.Base64))
2014-10-15 23:47:07 +08:00
func SetEncoding(enc Encoding) MessageSetting {
return func(msg *Message) {
msg.encoding = enc
}
}
// Encoding represents a MIME encoding scheme like quoted-printable or base64.
type Encoding string
const (
// QuotedPrintable represents the quoted-printable encoding as defined in
// RFC 2045.
QuotedPrintable Encoding = "quoted-printable"
// Base64 represents the base64 encoding as defined in RFC 2045.
Base64 Encoding = "base64"
2014-10-28 15:35:50 +08:00
// Unencoded can be used to avoid encoding the body of an email. The headers
// will still be encoded using quoted-printable encoding.
Unencoded Encoding = "8bit"
2014-10-15 23:47:07 +08:00
)
// SetHeader sets a value to the given header field.
func (msg *Message) SetHeader(field string, value ...string) {
for i := range value {
value[i] = msg.encodeHeader(value[i])
2014-10-15 23:47:07 +08:00
}
msg.header[field] = value
}
// SetHeaders sets the message headers.
//
// Example:
//
// msg.SetHeaders(map[string][]string{
// "From": {"alex@example.com"},
// "To": {"bob@example.com", "cora@example.com"},
// "Subject": {"Hello"},
// })
func (msg *Message) SetHeaders(h map[string][]string) {
for k, v := range h {
msg.SetHeader(k, v...)
}
}
// SetAddressHeader sets an address to the given header field.
func (msg *Message) SetAddressHeader(field, address, name string) {
msg.header[field] = []string{msg.FormatAddress(address, name)}
}
// FormatAddress formats an address and a name as a valid RFC 5322 address.
func (msg *Message) FormatAddress(address, name string) string {
enc := msg.encodeHeader(name)
if enc == name {
msg.buf.WriteByte('"')
for i := 0; i < len(name); i++ {
b := name[i]
if b == '\\' || b == '"' {
msg.buf.WriteByte('\\')
}
msg.buf.WriteByte(b)
}
msg.buf.WriteByte('"')
} else if hasSpecials(name) {
msg.buf.WriteString(mime.BEncoding.Encode(msg.charset, name))
} else {
msg.buf.WriteString(enc)
}
msg.buf.WriteString(" <")
msg.buf.WriteString(address)
msg.buf.WriteByte('>')
addr := msg.buf.String()
msg.buf.Reset()
return addr
}
func hasSpecials(text string) bool {
for i := 0; i < len(text); i++ {
switch c := text[i]; c {
case '(', ')', '<', '>', '[', ']', ':', ';', '@', '\\', ',', '.', '"':
return true
}
}
return false
}
func (msg *Message) encodeHeader(value string) string {
return msg.hEncoder.Encode(msg.charset, value)
2014-10-15 23:47:07 +08:00
}
// SetDateHeader sets a date to the given header field.
func (msg *Message) SetDateHeader(field string, date time.Time) {
msg.header[field] = []string{msg.FormatDate(date)}
}
// FormatDate formats a date as a valid RFC 5322 date.
func (msg *Message) FormatDate(date time.Time) string {
2015-02-28 23:46:44 +08:00
return date.Format(time.RFC1123Z)
2014-10-15 23:47:07 +08:00
}
// GetHeader gets a header field.
func (msg *Message) GetHeader(field string) []string {
return msg.header[field]
}
// DelHeader deletes a header field.
func (msg *Message) DelHeader(field string) {
delete(msg.header, field)
}
// SetBody sets the body of the message.
func (msg *Message) SetBody(contentType, body string) {
msg.parts = []part{
part{
contentType: contentType,
copier: func(w io.Writer) error {
_, err := io.WriteString(w, body)
return err
},
2014-10-15 23:47:07 +08:00
},
}
}
// AddAlternative adds an alternative part to the message. Commonly used to
2014-10-15 23:47:07 +08:00
// send HTML emails that default to the plain text version for backward
// compatibility.
//
// Example:
//
// msg.SetBody("text/plain", "Hello!")
// msg.AddAlternative("text/html", "<p>Hello!</p>")
//
// More info: http://en.wikipedia.org/wiki/MIME#Alternative
func (msg *Message) AddAlternative(contentType, body string) {
msg.parts = append(msg.parts,
part{
contentType: contentType,
copier: func(w io.Writer) error {
_, err := io.WriteString(w, body)
return err
},
2014-10-15 23:47:07 +08:00
},
)
}
// AddAlternativeWriter adds an alternative part to the message. It can be
// useful with the text/template and html/template packages.
2014-10-15 23:47:07 +08:00
//
// Example:
//
// t := template.Must(template.New("example").Parse("Hello {{.}}!"))
// msg.AddAlternativeWriter("text/plain", func(w io.Writer) error {
// return t.Execute(w, "Bob")
// })
func (msg *Message) AddAlternativeWriter(contentType string, f func(io.Writer) error) {
msg.parts = []part{
2014-10-15 23:47:07 +08:00
part{
contentType: contentType,
copier: f,
2014-10-15 23:47:07 +08:00
},
}
2014-10-15 23:47:07 +08:00
}
// A File represents a file that can be attached or embedded in an email.
type File struct {
// Name represents the base name of the file. If the file is attached to the
// message it is the name of the attachment.
Name string
// Header represents the MIME header of the message part that contains the
// file content.
Header map[string][]string
// Copier is a function run when the message is sent. It should copy the
// content of the file to w.
Copier func(w io.Writer) error
2014-10-15 23:47:07 +08:00
}
// NewFile creates a File from the given filename.
func NewFile(filename string) *File {
return &File{
Name: filepath.Base(filename),
Header: make(map[string][]string),
Copier: func(w io.Writer) error {
h, err := os.Open(filename)
if err != nil {
return err
}
if _, err := io.Copy(w, h); err != nil {
h.Close()
return err
}
return h.Close()
},
2014-10-15 23:47:07 +08:00
}
}
func (f *File) setHeader(field string, value ...string) {
f.Header[field] = value
2014-10-15 23:47:07 +08:00
}
// Attach attaches the files to the email.
func (msg *Message) Attach(f ...*File) {
if msg.attachments == nil {
msg.attachments = f
} else {
msg.attachments = append(msg.attachments, f...)
}
}
// Embed embeds the images to the email.
//
// Example:
//
// f, err := gomail.OpenFile("/tmp/image.jpg")
// if err != nil {
// panic(err)
// }
// msg.Embed(f)
// msg.SetBody("text/html", `<img src="cid:image.jpg" alt="My image" />`)
func (msg *Message) Embed(image ...*File) {
if msg.embedded == nil {
msg.embedded = image
} else {
msg.embedded = append(msg.embedded, image...)
2014-10-15 23:47:07 +08:00
}
}
// Stubbed out for testing.
var readFile = ioutil.ReadFile