a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
21 lignes
317 o
Go
21 lignes
317 o
Go
// +build go1.5
|
|
|
|
package gomail
|
|
|
|
import (
|
|
"mime"
|
|
"mime/quotedprintable"
|
|
"strings"
|
|
)
|
|
|
|
var newQPWriter = quotedprintable.NewWriter
|
|
|
|
type mimeEncoder struct {
|
|
mime.WordEncoder
|
|
}
|
|
|
|
var (
|
|
bEncoding = mimeEncoder{mime.BEncoding}
|
|
qEncoding = mimeEncoder{mime.QEncoding}
|
|
lastIndexByte = strings.LastIndexByte
|
|
)
|