1 // Package message implements reading and writing multipurpose messages.
2 //
3 // RFC 2045, RFC 2046 and RFC 2047 defines MIME, and RFC 2183 defines the
4 // Content-Disposition header field.
5 //
6 // Add this import to your package if you want to handle most common charsets
7 // by default:
8 //
9 // import (
10 // _ "github.com/emersion/go-message/charset"
11 // )
12 //
13 // Note, non-UTF-8 charsets are only supported when reading messages. Only
14 // UTF-8 is supported when writing messages.
15 package message
16