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
25 lignes
445 o
Go
25 lignes
445 o
Go
// +build !go1.5
|
|
|
|
package gomail
|
|
|
|
import "gopkg.in/alexcesaro/quotedprintable.v3"
|
|
|
|
var newQPWriter = quotedprintable.NewWriter
|
|
|
|
type mimeEncoder struct {
|
|
quotedprintable.WordEncoder
|
|
}
|
|
|
|
var (
|
|
bEncoding = mimeEncoder{quotedprintable.BEncoding}
|
|
qEncoding = mimeEncoder{quotedprintable.QEncoding}
|
|
lastIndexByte = func(s string, c byte) int {
|
|
for i := len(s) - 1; i >= 0; i-- {
|
|
|
|
if s[i] == c {
|
|
return i
|
|
}
|
|
}
|
|
return -1
|
|
}
|
|
)
|