| 31 | } |
| 32 | |
| 33 | Message struct { |
| 34 | ID string `json:"id"` |
| 35 | From string `json:"from"` |
| 36 | To string `json:"to"` |
| 37 | CC string `json:"cc"` |
| 38 | Subject string `json:"subject"` |
| 39 | BodyText string `json:"body_text"` |
| 40 | BodyHTML string `json:"body_html"` |
| 41 | Inlines []*File `json:"inlines"` |
| 42 | Attachments []*File `json:"attachments"` |
| 43 | buffer *bytes.Buffer |
| 44 | boundary string |
| 45 | } |
| 46 | |
| 47 | File struct { |
| 48 | Name string |
nothing calls this directly
no outgoing calls
no test coverage detected