Plain text only extended reply header

This commit is contained in:
M66B
2021-07-18 21:31:43 +02:00
parent fda5e0da5f
commit f345fb8e0c
2 changed files with 11 additions and 6 deletions

View File

@@ -416,13 +416,12 @@ public class EntityMessage implements Serializable {
} else
p.text(DF.format(new Date(received)) + " " + MessageHelper.formatAddresses(from) + ":");
if (separate) {
Element div = document.createElement("div");
Element div = document.createElement("div")
.attr("fairemail", "reply");
if (separate)
div.appendElement("hr");
div.appendChild(p);
return div;
} else
return p;
div.appendChild(p);
return div;
}
String getNotificationChannelId() {