Files
wg-portal/internal/domain/mail.go
T

19 lines
367 B
Go
Raw Normal View History

2023-08-04 13:34:18 +02:00
package domain
import "io"
type MailOptions struct {
ReplyTo string // defaults to the sender
HtmlBody string // if html body is empty, a text-only email will be sent
Cc []string
Bcc []string
Attachments []MailAttachment
}
type MailAttachment struct {
Name string
ContentType string
Data io.Reader
Embedded bool
}