mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
317 B
21 lines
317 B
// +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 |
|
)
|
|
|