diff --git a/emailnotif.js b/emailnotif.js index 5057804..024d43e 100644 --- a/emailnotif.js +++ b/emailnotif.js @@ -20,6 +20,8 @@ function buildHtml(approverName, title, priorName) { function postEmail(approverName, title, priorName) { const payload = JSON.stringify({ to: [RECIPIENT], + cc: [], + bcc: [], subject: `[Approval Required] Justification for ${title}`, html: buildHtml(approverName, title, priorName) });