template.go 377 B

123456789101112131415161718192021
  1. package email
  2. //邮件的发件人、收件列表、抄送列表、主题
  3. const (
  4. FROM = "From"
  5. TO = "To"
  6. CC = "Cc"
  7. SUBJECT = "Subject"
  8. )
  9. //Template 邮件模板
  10. type Template struct {
  11. Headers map[string][]string
  12. Body string
  13. ContentType string
  14. Type string
  15. AID int64
  16. UID int64
  17. Username string
  18. Department string
  19. }