mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-08 23:12:54 +01:00
Winni Neessen
85bbf744fa
- Renamed `Msg.WriteToTempfile` to `Msg.WriteToTempFile` - Added test coverage for `Msg.WriteToFile` and `Msg.WriteToTempFile`
20 lines
475 B
Go
20 lines
475 B
Go
//go:build go1.17
|
|
// +build go1.17
|
|
|
|
package mail
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
// WriteToTempFile will create a temporary file and output the Msg to this file
|
|
// The method will return the filename of the temporary file
|
|
func (m *Msg) WriteToTempFile() (string, error) {
|
|
f, err := os.CreateTemp("", "go-mail_*.eml")
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to create output file: %w", err)
|
|
}
|
|
defer func() { _ = f.Close() }()
|
|
return f.Name(), m.WriteToFile(f.Name())
|
|
}
|