[enh] h3 as default header for grouping mail

This commit is contained in:
2020-09-20 13:57:59 +02:00
parent e6af410936
commit c41fffe976

View File

@@ -56,7 +56,7 @@ async function consumeQueue() {
const subject = `[dw] [${os.hostname}] ${messages.length} notifications`
let body = ''
for (const message of messages) {
body += `<h1>${message.subject}</h1>\n`
body += `<h3>${message.subject}</h3>\n`
body += `<div>${message.body}</div>\n`
}
await sendEmail(subject, body, cc || undefined)