Skip to content

Commit

Permalink
fix(email): provide email body for lottery interventions
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiDood committed Aug 9, 2024
1 parent ac3ad9c commit 9868298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion email/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function listenForDraftNotifications(emailer: Emailer, signal: AbortSignal
return {
emails: db.getValidFacultyAndStaffEmails(),
subject: `[DRAP] Lottery Intervention for ${notif.lab_id.toUpperCase()} in Draft #${notif.draft_id}`,
message: ``,
message: `${notif.given_name} ${notif.family_name} <${notif.email}> has been manually assigned to ${notif.lab_name} during the lottery round of Draft #${notif.draft_id}.`,
};
case 'DraftConcluded':
return {
Expand Down

0 comments on commit 9868298

Please sign in to comment.