Skip to content

Commit

Permalink
Revert after successful merge
Browse files Browse the repository at this point in the history
  • Loading branch information
wneessen committed May 16, 2024
1 parent 2e54851 commit 4ef24a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions msgwriter.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ func (mw *msgWriter) writeMsg(msg *Msg) {
}

if msg.hasMixed() {
mw.startMP("mixed", msg.boundary)
mw.startMP(MIMEMixed, msg.boundary)
mw.writeString(DoubleNewLine)
}
if msg.hasRelated() {
mw.startMP("related", msg.boundary)
mw.startMP(MIMERelated, msg.boundary)
mw.writeString(DoubleNewLine)
}
if msg.hasAlt() {
Expand Down

0 comments on commit 4ef24a5

Please sign in to comment.