mirror of
https://github.com/h44z/wg-portal
synced 2025-02-26 05:49:14 +00:00
19 lines
367 B
Go
19 lines
367 B
Go
|
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
|
||
|
}
|