mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-12 17:02:55 +01:00
#138: Add error handling to message writing process
In the updated version of msgwriter.go, an additional error handling process has been included. If an error is detected when creating a new part in the message writer, this error is stored and prevents executing the writeBody function. This fixes nil pointer dereference in `mw.writeBody` if an error occured previously.
This commit is contained in:
parent
832c0026b1
commit
edd6051df3
1 changed files with 4 additions and 1 deletions
|
@ -231,8 +231,11 @@ func (mw *msgWriter) addFiles(fl []*File, a bool) {
|
|||
if mw.d > 0 {
|
||||
mw.newPart(f.Header)
|
||||
}
|
||||
|
||||
if mw.err == nil {
|
||||
mw.writeBody(f.Writer, e)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// newPart creates a new MIME multipart io.Writer and sets the partwriter to it
|
||||
|
|
Loading…
Reference in a new issue