Skip to content

Commit 407cfa6

Browse files
committed
fix: priority fix for send email
1 parent 7e73017 commit 407cfa6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/orchestrator/src/workflows/digest.email.workflow.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ export async function digestEmailWorkflow({
5858
toSend.length === 1
5959
? toSend[0].title
6060
: `[Postiz] Your latest notifications`,
61-
toSend.map((p) => p.message).join('<br/>')
61+
toSend.map((p) => p.message).join('<br/>'),
62+
'bottom'
6263
);
6364
}
6465

0 commit comments

Comments
 (0)