mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-09 15:32:54 +01:00
72 lines
1.7 KiB
Go
72 lines
1.7 KiB
Go
// SPDX-FileCopyrightText: 2022 Winni Neessen <winni@neessen.dev>
|
|
//
|
|
// 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
|
|
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
|
|
}
|
|
|
|
// WithPartEncoding overrides the default Part encoding
|
|
func WithPartEncoding(e Encoding) PartOption {
|
|
return func(p *Part) {
|
|
p.enc = e
|
|
}
|
|
}
|