Revert after successful merge

This commit is contained in:
Winni Neessen 2024-05-16 15:18:26 +02:00
parent 2e548512c6
commit 4ef24a5234
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -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() {