Skip to content

Commit

Permalink
Update newsletter.js
Browse files Browse the repository at this point in the history
  • Loading branch information
SheItoon authored Jan 4, 2024
1 parent 10cef50 commit baceb35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/newsletter.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ newsletter_router.post('/create', authenticateTokenAdm, async (req, res) => {

if (!newsletter) return res.status(404).send('No user in newsletter');

if (process.env.UT_CI == false) {
if (process.env.UT_CI == 'false') {
const ret = await sendEmailToMultipleRecipients(subject, text, newsletter);
console.log(ret);
}
Expand Down

0 comments on commit baceb35

Please sign in to comment.