16 lines
217 B
Go
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
|
|
}
|