diff --git a/backend/emails/emails.js b/backend/emails/emails.js index 143b8ec..b60ed08 100644 --- a/backend/emails/emails.js +++ b/backend/emails/emails.js @@ -99,16 +99,17 @@ const getSFTicketInfoHTML = async (sf) => { Ticket Code: ${sf.code}
Sponsorship Fund: ${sf.name}
Allocated Funding: CAD ${currencyFormatter.format( - sf.funding_allocation - )}
+ sf.funding_allocation + )}
Funding Spent: CAD ${currencyFormatter.format( - sf.funding_spent - )}
+ sf.funding_spent + )}
${sf.proposal_url ? `Proposal URL: ${sf.proposal_url}
` : ``} - ${sf.presentation_url - ? `Presentation URL: ${sf.presentation_url}
` - : `` - } + ${ + sf.presentation_url + ? `Presentation URL: ${sf.presentation_url}
` + : `` + } Status: ${sf.status}
Reporter: ${reporter.displayName} <${reporter.email}>
Created: ${new Date(sf.createdAt).toDateString()}