Files
accounting/mailer/model.go
2025-08-24 13:11:31 +02:00

16 lines
217 B
Go

package mailer
import "io"
type Mail struct {
TO string
Subject string
Body string
Attachments []Attachment
}
type Attachment struct {
Name string
MimeType string
Content io.Reader
}