app/email/base.go

22 lines
266 B
Go
Raw Normal View History

2021-12-17 04:54:03 +00:00
package email
2021-12-17 03:46:04 +00:00
type App struct {
Name string
Link string
Logo string
Copyright string
}
2021-12-17 04:54:03 +00:00
type Body struct {
App App
Intros []string
Outros []string
Content string
2021-12-17 03:46:04 +00:00
Greeting string
Receiver string
Signature string
Sender string
}