var ErrHeaderNotPresent = errors.New("mail: header not in message")
func ParseAddressList(list string) ([]*Address, error)
ParseAddressList parses the given string as a list of addresses.
▹ Example
func ParseDate(date string) (time.Time, error)
ParseDate parses an RFC 5322 date string.
Address represents a single mail address. An address such as "Barry Gibbs <bg@example.com>" is represented as Address{Name: "Barry Gibbs", Address: "bg@example.com"}.
type Address struct { Name string // Proper name; may be empty. Address string // user@domain }
func ParseAddress(address string) (*Address, error)
Parses a single RFC 5322 address, e.g. "Barry Gibbs <bg@example.com>"
▹ Example
func (a *Address) String() string
String formats the address as a valid RFC 5322 address. If the address's name contains non-ASCII characters the name will be rendered according to RFC 2047.
An AddressParser is an RFC 5322 address parser.
type AddressParser struct { // WordDecoder optionally specifies a decoder for RFC 2047 encoded-words. WordDecoder *mime.WordDecoder }
func (p *AddressParser) Parse(address string) (*Address, error)
Parse parses a single RFC 5322 address of the form "Gogh Fir <gf@example.com>" or "foo@example.com".
func (p *AddressParser) ParseList(list string) ([]*Address, error)
ParseList parses the given string as a list of comma-separated addresses of the form "Gogh Fir <gf@example.com>" or "foo@example.com".
A Header represents the key-value pairs in a mail message header.
type Header map[string][]string
func (h Header) AddressList(key string) ([]*Address, error)
AddressList parses the named header field as a list of addresses.
func (h Header) Date() (time.Time, error)
Date parses the Date header field.
func (h Header) Get(key string) string
Get gets the first value associated with the given key. It is case insensitive; CanonicalMIMEHeaderKey is used to canonicalize the provided key. If there are no values associated with the key, Get returns "". To access multiple values of a key, or to use non-canonical keys, access the map directly.
A Message represents a parsed mail message.
type Message struct { Header Header Body io.Reader }
func ReadMessage(r io.Reader) (msg *Message, err error)
ReadMessage reads a message from r. The headers are parsed, and the body of the message will be available for reading from r.
▹ Example