package mail

// MailMessage represents an email entity
type MailMessage struct {
	To      string
	Subject string
	Body    string
}
