Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package email
//邮件的发件人、收件列表、抄送列表、主题
const (
FROM = "From"
TO = "To"
CC = "Cc"
SUBJECT = "Subject"
)
//Template 邮件模板
type Template struct {
Headers map[string][]string
Body string
ContentType string
Type string
AID int64
UID int64
Username string
Department string
}