fix: priority fix for send email

This commit is contained in:
Nevo David 2026-01-07 09:59:33 +07:00
parent 7e73017d3f
commit 407cfa67ef
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ export async function digestEmailWorkflow({
toSend.length === 1
? toSend[0].title
: `[Postiz] Your latest notifications`,
toSend.map((p) => p.message).join('<br/>')
toSend.map((p) => p.message).join('<br/>'),
'bottom'
);
}