Documentation ¶ Index ¶ type Address type Attach type Mail type Type Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Address ¶ type Address struct { Address string `json:"address"` Name string `json:"name"` } Address def. type Attach ¶ type Attach struct { Name string File multipart.File ShouldUnzip bool } Attach def. type Mail ¶ type Mail struct { ToAddresses []*Address `json:"to_addresses"` CcAddresses []*Address `json:"cc_addresses"` BccAddresses []*Address `json:"bcc_addresses"` Subject string `json:"subject"` Body string `json:"body"` Type Type `json:"type"` } Mail def. type Type ¶ type Type uint8 Type for mail const ( TypeTextPlain Type = iota TypeTextHTML ) Mail types Source Files ¶ View all Source files mail.go Click to show internal directories. Click to hide internal directories.