This commit is contained in:
Aine
2022-08-24 21:28:30 +03:00
parent 5b76afc0eb
commit f9cf94c914
9 changed files with 279 additions and 113 deletions

13
utils/email.go Normal file
View File

@@ -0,0 +1,13 @@
package utils
// Email object
type Email struct {
MessageID string
InReplyTo string
From string
To string
Subject string
Text string
HTML string
Files []*File
}