commit | 1a966487dda67a7bbacebca0512933ae632abaec | [log] [tgz] |
---|---|---|
author | Dusan Kasan <me@dusankasan.com> | Tue Apr 18 10:45:25 2017 +0200 |
committer | Dusan Kasan <me@dusankasan.com> | Tue Apr 18 10:45:25 2017 +0200 |
tree | 1e36c78fbe51df7dd04ecf86f326a4095978f732 | |
parent | 45ca26475ab3a5f6a09c247c334fe2116a50d9ec [diff] |
Formatting fixed
This library allows for parsing an email message into a more convenient form than the net/mail
provides. Where the net/mail
just gives you a map of header fields and a io.Reader
of its body, Parsemail allows access to all the standard header fields set in RFC5322, html/text body as well as attachements/embedded content as binary streams with metadata.
var reader io.Reader // this reads an email message email, err := parsemail.Parse(reader) // returns Email struct and error if err != nil { // handle error } fmt.Println(email.Subject) fmt.Println(email.From) fmt.Println(email.To) fmt.Println(email.HTMLBody)
It is missing some tests, and needs more work. Use at your own discretion.