Update vendor/

This commit is contained in:
2018-06-28 01:09:56 +01:00
parent 3e5ab5bb0a
commit 21c6e571d8
108 changed files with 121110 additions and 1144 deletions

18
vendor/github.com/emersion/go-message/mail/text.go generated vendored Normal file
View File

@@ -0,0 +1,18 @@
package mail
import (
"github.com/emersion/go-message"
)
// A TextHeader represents a message text header.
type TextHeader struct {
message.Header
}
// NewTextHeader creates a new message text header.
func NewTextHeader() TextHeader {
h := TextHeader{make(message.Header)}
h.Set("Content-Disposition", "inline")
h.Set("Content-Transfer-Encoding", "quoted-printable")
return h
}