Send report notification as html when delivering via email

This commit is contained in:
Alfredo Cardigliano 2023-08-29 19:31:42 +02:00
parent d3d9b405dc
commit 3c90f6bcf3
4 changed files with 54 additions and 3 deletions

View file

@ -170,7 +170,7 @@ function email.dequeueRecipientAlerts(recipient, budget)
for _, json_message in ipairs(notifications) do
local notif = json.decode(json_message)
message_body[#message_body + 1] = format_utils.formatMessage(notif, {show_entity = true, nohtml=true})
message_body[#message_body + 1] = format_utils.formatMessage(notif, {show_entity = true, nohtml=false})
end
message_body = table.concat(message_body, "<br>")