2014-10-15 23:47:07 +08:00
|
|
|
package gomail
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/base64"
|
|
|
|
"io"
|
|
|
|
"mime/multipart"
|
2015-06-27 23:20:04 +08:00
|
|
|
"mime/quotedprintable"
|
2014-10-15 23:47:07 +08:00
|
|
|
"net/mail"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Export converts the message into a net/mail.Message.
|
|
|
|
func (msg *Message) Export() *mail.Message {
|
|
|
|
w := newMessageWriter(msg)
|
|
|
|
|
|
|
|
if msg.hasMixedPart() {
|
|
|
|
w.openMultipart("mixed")
|
|
|
|
}
|
|
|
|
|
|
|
|
if msg.hasRelatedPart() {
|
|
|
|
w.openMultipart("related")
|
|
|
|
}
|
|
|
|
|
|
|
|
if msg.hasAlternativePart() {
|
|
|
|
w.openMultipart("alternative")
|
|
|
|
}
|
|
|
|
for _, part := range msg.parts {
|
|
|
|
h := make(map[string][]string)
|
|
|
|
h["Content-Type"] = []string{part.contentType + "; charset=" + msg.charset}
|
2014-10-28 15:35:50 +08:00
|
|
|
h["Content-Transfer-Encoding"] = []string{string(msg.encoding)}
|
2014-10-15 23:47:07 +08:00
|
|
|
|
|
|
|
w.write(h, part.body.Bytes(), msg.encoding)
|
|
|
|
}
|
|
|
|
if msg.hasAlternativePart() {
|
|
|
|
w.closeMultipart()
|
|
|
|
}
|
|
|
|
|
|
|
|
w.addFiles(msg.embedded, false)
|
|
|
|
if msg.hasRelatedPart() {
|
|
|
|
w.closeMultipart()
|
|
|
|
}
|
|
|
|
|
|
|
|
w.addFiles(msg.attachments, true)
|
|
|
|
if msg.hasMixedPart() {
|
|
|
|
w.closeMultipart()
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.export()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *Message) hasMixedPart() bool {
|
|
|
|
return (len(msg.parts) > 0 && len(msg.attachments) > 0) || len(msg.attachments) > 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *Message) hasRelatedPart() bool {
|
|
|
|
return (len(msg.parts) > 0 && len(msg.embedded) > 0) || len(msg.embedded) > 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *Message) hasAlternativePart() bool {
|
|
|
|
return len(msg.parts) > 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// messageWriter helps converting the message into a net/mail.Message
|
|
|
|
type messageWriter struct {
|
|
|
|
header map[string][]string
|
|
|
|
buf *bytes.Buffer
|
|
|
|
writers [3]*multipart.Writer
|
|
|
|
partWriter io.Writer
|
|
|
|
depth uint8
|
|
|
|
}
|
|
|
|
|
|
|
|
func newMessageWriter(msg *Message) *messageWriter {
|
|
|
|
// We copy the header so Export does not modify the message
|
|
|
|
header := make(map[string][]string, len(msg.header)+2)
|
|
|
|
for k, v := range msg.header {
|
|
|
|
header[k] = v
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := header["Mime-Version"]; !ok {
|
|
|
|
header["Mime-Version"] = []string{"1.0"}
|
|
|
|
}
|
|
|
|
if _, ok := header["Date"]; !ok {
|
|
|
|
header["Date"] = []string{msg.FormatDate(now())}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &messageWriter{header: header, buf: new(bytes.Buffer)}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stubbed out for testing.
|
|
|
|
var now = time.Now
|
|
|
|
|
|
|
|
func (w *messageWriter) openMultipart(mimeType string) {
|
|
|
|
w.writers[w.depth] = multipart.NewWriter(w.buf)
|
|
|
|
contentType := "multipart/" + mimeType + "; boundary=" + w.writers[w.depth].Boundary()
|
|
|
|
|
|
|
|
if w.depth == 0 {
|
|
|
|
w.header["Content-Type"] = []string{contentType}
|
|
|
|
} else {
|
|
|
|
h := make(map[string][]string)
|
|
|
|
h["Content-Type"] = []string{contentType}
|
|
|
|
w.createPart(h)
|
|
|
|
}
|
|
|
|
w.depth++
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *messageWriter) createPart(h map[string][]string) {
|
|
|
|
// No need to check the error since the underlying writer is a bytes.Buffer
|
|
|
|
w.partWriter, _ = w.writers[w.depth-1].CreatePart(h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *messageWriter) closeMultipart() {
|
|
|
|
if w.depth > 0 {
|
|
|
|
w.writers[w.depth-1].Close()
|
|
|
|
w.depth--
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *messageWriter) addFiles(files []*File, isAttachment bool) {
|
|
|
|
for _, f := range files {
|
|
|
|
h := make(map[string][]string)
|
|
|
|
h["Content-Type"] = []string{f.MimeType + "; name=\"" + f.Name + "\""}
|
|
|
|
h["Content-Transfer-Encoding"] = []string{string(Base64)}
|
|
|
|
if isAttachment {
|
|
|
|
h["Content-Disposition"] = []string{"attachment; filename=\"" + f.Name + "\""}
|
|
|
|
} else {
|
|
|
|
h["Content-Disposition"] = []string{"inline; filename=\"" + f.Name + "\""}
|
2015-02-19 03:46:05 +08:00
|
|
|
if f.ContentID != "" {
|
|
|
|
h["Content-ID"] = []string{"<" + f.ContentID + ">"}
|
|
|
|
} else {
|
|
|
|
h["Content-ID"] = []string{"<" + f.Name + ">"}
|
|
|
|
}
|
2014-10-15 23:47:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
w.write(h, f.Content, Base64)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *messageWriter) write(h map[string][]string, body []byte, enc Encoding) {
|
|
|
|
w.writeHeader(h)
|
|
|
|
w.writeBody(body, enc)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *messageWriter) writeHeader(h map[string][]string) {
|
|
|
|
if w.depth == 0 {
|
|
|
|
for field, value := range h {
|
|
|
|
w.header[field] = value
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
w.createPart(h)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *messageWriter) writeBody(body []byte, enc Encoding) {
|
|
|
|
var subWriter io.Writer
|
|
|
|
if w.depth == 0 {
|
|
|
|
subWriter = w.buf
|
|
|
|
} else {
|
|
|
|
subWriter = w.partWriter
|
|
|
|
}
|
|
|
|
|
|
|
|
// The errors returned by writers are not checked since these writers cannot
|
|
|
|
// return errors.
|
|
|
|
if enc == Base64 {
|
|
|
|
writer := base64.NewEncoder(base64.StdEncoding, newBase64LineWriter(subWriter))
|
|
|
|
writer.Write(body)
|
|
|
|
writer.Close()
|
2014-10-28 15:35:50 +08:00
|
|
|
} else if enc == Unencoded {
|
|
|
|
subWriter.Write(body)
|
2014-10-15 23:47:07 +08:00
|
|
|
} else {
|
2015-06-27 23:20:04 +08:00
|
|
|
writer := quotedprintable.NewWriter(subWriter)
|
2014-10-15 23:47:07 +08:00
|
|
|
writer.Write(body)
|
2015-06-27 23:20:04 +08:00
|
|
|
writer.Close()
|
2014-10-15 23:47:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *messageWriter) export() *mail.Message {
|
|
|
|
return &mail.Message{Header: w.header, Body: w.buf}
|
|
|
|
}
|
|
|
|
|
2015-01-20 20:15:52 +08:00
|
|
|
// As required by RFC 2045, 6.7. (page 21) for quoted-printable, and
|
|
|
|
// RFC 2045, 6.8. (page 25) for base64.
|
|
|
|
const maxLineLen = 76
|
2014-10-15 23:47:07 +08:00
|
|
|
|
2015-01-20 20:15:52 +08:00
|
|
|
// base64LineWriter limits text encoded in base64 to 76 characters per line
|
2014-10-15 23:47:07 +08:00
|
|
|
type base64LineWriter struct {
|
|
|
|
w io.Writer
|
|
|
|
lineLen int
|
|
|
|
}
|
|
|
|
|
|
|
|
func newBase64LineWriter(w io.Writer) *base64LineWriter {
|
|
|
|
return &base64LineWriter{w: w}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *base64LineWriter) Write(p []byte) (int, error) {
|
|
|
|
n := 0
|
|
|
|
for len(p)+w.lineLen > maxLineLen {
|
|
|
|
w.w.Write(p[:maxLineLen-w.lineLen])
|
|
|
|
w.w.Write([]byte("\r\n"))
|
|
|
|
p = p[maxLineLen-w.lineLen:]
|
|
|
|
n += maxLineLen - w.lineLen
|
|
|
|
w.lineLen = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
w.w.Write(p)
|
|
|
|
w.lineLen += len(p)
|
|
|
|
|
|
|
|
return n + len(p), nil
|
|
|
|
}
|