apiary/honeypot/smtp/mail.go

13 lines
155 B
Go
Raw Normal View History

2021-11-06 13:04:11 +00:00
package smtp
import "time"
type MailData struct {
From string
Recipients []string
Data string
RemoteAddr string
Timestamp time.Time
}