Files
postmoogle/utils/email.go
2022-08-24 21:28:30 +03:00

14 lines
198 B
Go

package utils
// Email object
type Email struct {
MessageID string
InReplyTo string
From string
To string
Subject string
Text string
HTML string
Files []*File
}