We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We are expected to see exported types and fields to create MessageSetting, PartSetting, FileSetting, etc..
MessageSetting
PartSetting
FileSetting
type Message struct { header header parts []*part attachments []*file embedded []*file charset string encoding Encoding hEncoder mimeEncoder buf bytes.Buffer } type header map[string][]string type part struct { contentType string copier func(io.Writer) error encoding Encoding } type file struct { Name string Header map[string][]string CopyFunc func(w io.Writer) error }
→
type Message struct { Header Header Parts []*Part Attachments []*File Embedded []*File Charset string Encoding Encoding Encoder mime.WordEncoder Buf bytes.Buffer } type Header map[string][]string type Part struct { ContentType string Copier func(io.Writer) error Encoding Encoding } type File struct { Name string Header Header CopyFunc func(w io.Writer) error }
The text was updated successfully, but these errors were encountered:
I tried to modify them myself, but what is the effect to the coupled components?
Sorry, something went wrong.
No branches or pull requests
We are expected to see exported types and fields to create
MessageSetting
,PartSetting
,FileSetting
, etc..→
The text was updated successfully, but these errors were encountered: