https://github.com/zenhack/go.fmtmail
Output net/mail messages
https://github.com/zenhack/go.fmtmail
Last synced: 5 months ago
JSON representation
Output net/mail messages
- Host: GitHub
- URL: https://github.com/zenhack/go.fmtmail
- Owner: zenhack
- License: isc
- Created: 2016-04-24T14:54:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-24T16:47:08.000Z (almost 10 years ago)
- Last Synced: 2025-02-03T13:45:04.050Z (about 1 year ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.go
- License: COPYING
Awesome Lists containing this project
README
// Package `fmtmail` extends the standard library's `net/mail` to add support
// for outputting mail, not just parsing it.
//
// The basic functionality already works, but there are still some details
// to finish up:
//
// * Handle outputting "structured" fields; we can't just split everything
// on character boundaries.
// * Go over RFC 5322 and make sure we're hitting all of the edge cases.
// Right now we're probably missing some important stuff.
// * Investigate what we need to do to accomodate MIME.
//
// Released under a simple permissive license, see `COPYING`.
package fmtmail