mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-08 23:12:54 +01:00
Winni Neessen
9724a2b523
This PR introduces a new struct field for the message parts: `del` If the del flag is set to `true`, the msgWriter will ignore this part during the writing process. Additionally, the `part` has now a `Delete` method that lets the user mark the part as deleted This allows middleware to take further control of the Msg and is part of #107
79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
// SPDX-FileCopyrightText: 2022-2023 The go-mail Authors
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package mail
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
)
|
|
|
|
// PartOption returns a function that can be used for grouping Part options
|
|
type PartOption func(*Part)
|
|
|
|
// Part is a part of the Msg
|
|
type Part struct {
|
|
ctype ContentType
|
|
enc Encoding
|
|
del bool
|
|
w func(io.Writer) (int64, error)
|
|
}
|
|
|
|
// GetContent executes the WriteFunc of the Part and returns the content as byte slice
|
|
func (p *Part) GetContent() ([]byte, error) {
|
|
var b bytes.Buffer
|
|
if _, err := p.w(&b); err != nil {
|
|
return nil, err
|
|
}
|
|
return b.Bytes(), nil
|
|
}
|
|
|
|
// GetContentType returns the currently set ContentType of the Part
|
|
func (p *Part) GetContentType() ContentType {
|
|
return p.ctype
|
|
}
|
|
|
|
// GetEncoding returns the currently set Encoding of the Part
|
|
func (p *Part) GetEncoding() Encoding {
|
|
return p.enc
|
|
}
|
|
|
|
// GetWriteFunc returns the currently set WriterFunc of the Part
|
|
func (p *Part) GetWriteFunc() func(io.Writer) (int64, error) {
|
|
return p.w
|
|
}
|
|
|
|
// SetContent overrides the content of the Part with the given string
|
|
func (p *Part) SetContent(c string) {
|
|
buf := bytes.NewBufferString(c)
|
|
p.w = writeFuncFromBuffer(buf)
|
|
}
|
|
|
|
// SetContentType overrides the ContentType of the Part
|
|
func (p *Part) SetContentType(c ContentType) {
|
|
p.ctype = c
|
|
}
|
|
|
|
// SetEncoding creates a new mime.WordEncoder based on the encoding setting of the message
|
|
func (p *Part) SetEncoding(e Encoding) {
|
|
p.enc = e
|
|
}
|
|
|
|
// SetWriteFunc overrides the WriteFunc of the Part
|
|
func (p *Part) SetWriteFunc(w func(io.Writer) (int64, error)) {
|
|
p.w = w
|
|
}
|
|
|
|
// Delete removes the current part from the parts list of the Msg by setting the
|
|
// del flag to true. The msgWriter will skip it then
|
|
func (p *Part) Delete() {
|
|
p.del = true
|
|
}
|
|
|
|
// WithPartEncoding overrides the default Part encoding
|
|
func WithPartEncoding(e Encoding) PartOption {
|
|
return func(p *Part) {
|
|
p.enc = e
|
|
}
|
|
}
|