10 lines
171 B
Go
10 lines
171 B
Go
|
|
package email
|
||
|
|
|
||
|
|
// Message is the payload passed to email providers.
|
||
|
|
type Message struct {
|
||
|
|
From string
|
||
|
|
To []string
|
||
|
|
Subject string
|
||
|
|
Body string // HTML body
|
||
|
|
}
|