Skip to content

Commit

Permalink
#18: Added WriteToTempfile() which will create a temporary output file
Browse files Browse the repository at this point in the history
- We have two versions of this method:
  - One for Go versions below 1.17 using `ioutil.TempFile()`
  - One for Go versions >= 1.17 using `os.CreateTemp()`
  • Loading branch information
wneessen committed Jun 9, 2022
1 parent bc9b39f commit 491b594
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
20 changes: 20 additions & 0 deletions msg_totmpfile.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//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())
}
20 changes: 20 additions & 0 deletions msg_totmpfile_116.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//go:build !go1.17
// +build !go1.17

package mail

import (
"fmt"
"io/ioutil"
)

// 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 := ioutil.TempFile("", "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())
}

0 comments on commit 491b594

Please sign in to comment.