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 }