mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
9 lines
132 B
Go
9 lines
132 B
Go
package mail
|
|
|
|
// MailMessage represents an email entity
|
|
type MailMessage struct {
|
|
To string
|
|
Subject string
|
|
Body string
|
|
}
|