Documentation ¶
Overview ¶
Package mail implements reading and writing mail messages.
This package assumes that a mail message contains one or more text parts and zero or more attachment parts. Each text part represents a different version of the message content (e.g. a different type, a different language and so on).
RFC 5322 defines the Internet Message Format.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateSingleInlineWriter ¶ added in v0.10.0
CreateSingleInlineWriter writes a mail header to w. The mail will contain a single inline part. The body of the part should be written to the returned io.WriteCloser. Only one single inline part should be written, use CreateWriter if you want multiple parts.
Types ¶
type AttachmentHeader ¶
type AttachmentHeader struct {
message.Header
}
An AttachmentHeader represents an attachment's header.
func (*AttachmentHeader) Filename ¶
func (h *AttachmentHeader) Filename() (string, error)
Filename parses the attachment's filename.
func (*AttachmentHeader) SetFilename ¶
func (h *AttachmentHeader) SetFilename(filename string)
SetFilename formats the attachment's filename.
type Header ¶
type Header struct {
message.Header
}
A Header is a mail header.
func (*Header) AddressList ¶
AddressList parses the named header field as a list of addresses. If the header is missing, it returns nil.
func (*Header) SetAddressList ¶
SetAddressList formats the named header to the provided list of addresses.
func (*Header) SetSubject ¶
SetSubject formats the Subject header field.
type InlineHeader ¶ added in v0.10.0
type InlineHeader struct {
message.Header
}
A InlineHeader represents a message text header.
type InlineWriter ¶ added in v0.10.0
type InlineWriter struct {
// contains filtered or unexported fields
}
InlineWriter writes a mail message's text.
func (*InlineWriter) Close ¶ added in v0.10.0
func (w *InlineWriter) Close() error
Close finishes the InlineWriter.
func (*InlineWriter) CreatePart ¶ added in v0.10.0
func (w *InlineWriter) CreatePart(h InlineHeader) (io.WriteCloser, error)
CreatePart creates a new text part with the provided header. The body of the part should be written to the returned io.WriteCloser.
type Part ¶
type Part struct { Header PartHeader Body io.Reader }
A Part is either a mail text or an attachment. Header is either a InlineHeader or an AttachmentHeader.
type PartHeader ¶
type PartHeader interface { // Add adds the key, value pair to the header. Add(key, value string) // Del deletes the values associated with key. Del(key string) // Get gets the first value associated with the given key. If there are no // values associated with the key, Get returns "". Get(key string) string // Set sets the header entries associated with key to the single element // value. It replaces any existing values associated with key. Set(key, value string) }
A PartHeader is a mail part header. It contains convenience functions to get and set header fields.
type Reader ¶
type Reader struct { Header Header // contains filtered or unexported fields }
A Reader reads a mail message.
Example ¶
package main import ( "io" "io/ioutil" "log" "github.com/emersion/go-message/mail" ) func main() { // Let's assume r is an io.Reader that contains a mail. var r io.Reader // Create a new mail reader mr, err := mail.CreateReader(r) if err != nil { log.Fatal(err) } // Read each mail's part for { p, err := mr.NextPart() if err == io.EOF { break } else if err != nil { log.Fatal(err) } switch h := p.Header.(type) { case *mail.InlineHeader: b, _ := ioutil.ReadAll(p.Body) log.Printf("Got text: %v\n", string(b)) case *mail.AttachmentHeader: filename, _ := h.Filename() log.Printf("Got attachment: %v\n", filename) } } }
Output:
func CreateReader ¶
CreateReader reads a mail header from r and returns a new mail reader.
If the message uses an unknown transfer encoding or charset, CreateReader returns an error that verifies message.IsUnknownCharset, but also returns a Reader that can be used.
func (*Reader) NextPart ¶
NextPart returns the next mail part. If there is no more part, io.EOF is returned as error.
The returned Part.Body must be read completely before the next call to NextPart, otherwise it will be discarded.
If the part uses an unknown transfer encoding or charset, NextPart returns an error that verifies message.IsUnknownCharset, but also returns a Part that can be used.
type Writer ¶
type Writer struct {
// contains filtered or unexported fields
}
A Writer writes a mail message. A mail message contains one or more text parts and zero or more attachments.
Example ¶
package main import ( "bytes" "io" "log" "time" "github.com/emersion/go-message/mail" ) func main() { var b bytes.Buffer from := []*mail.Address{{"Mitsuha Miyamizu", "mitsuha.miyamizu@example.org"}} to := []*mail.Address{{"Taki Tachibana", "taki.tachibana@example.org"}} // Create our mail header var h mail.Header h.SetDate(time.Now()) h.SetAddressList("From", from) h.SetAddressList("To", to) // Create a new mail writer mw, err := mail.CreateWriter(&b, h) if err != nil { log.Fatal(err) } // Create a text part tw, err := mw.CreateInline() if err != nil { log.Fatal(err) } var th mail.InlineHeader th.Set("Content-Type", "text/plain") w, err := tw.CreatePart(th) if err != nil { log.Fatal(err) } io.WriteString(w, "Who are you?") w.Close() tw.Close() // Create an attachment var ah mail.AttachmentHeader ah.Set("Content-Type", "image/jpeg") ah.SetFilename("picture.jpg") w, err = mw.CreateAttachment(ah) if err != nil { log.Fatal(err) } // TODO: write a JPEG file to w w.Close() mw.Close() log.Println(b.String()) }
Output:
func CreateWriter ¶
CreateWriter writes a mail header to w and creates a new Writer.
func (*Writer) CreateAttachment ¶
func (w *Writer) CreateAttachment(h AttachmentHeader) (io.WriteCloser, error)
CreateAttachment creates a new attachment with the provided header. The body of the part should be written to the returned io.WriteCloser.
func (*Writer) CreateInline ¶ added in v0.10.0
func (w *Writer) CreateInline() (*InlineWriter, error)
CreateInline creates a InlineWriter. One or more parts representing the same text in different formats can be written to a InlineWriter.
func (*Writer) CreateSingleInline ¶ added in v0.10.0
func (w *Writer) CreateSingleInline(h InlineHeader) (io.WriteCloser, error)
CreateSingleInline creates a new single text part with the provided header. The body of the part should be written to the returned io.WriteCloser. Only one single text part should be written, use CreateInline if you want multiple text parts.