From 27621458dfd4e929b5f6921d8a3d78d0b38b00ae Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Sun, 20 Jul 2025 23:32:36 +0100 Subject: [PATCH] Add useless emojis to email subect lines --- auto-report-mail/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auto-report-mail/index.js b/auto-report-mail/index.js index cc7d4c5..9c4c828 100644 --- a/auto-report-mail/index.js +++ b/auto-report-mail/index.js @@ -57,7 +57,7 @@ cron.schedule('5 1 * * *', () => { const today = new Date(); const yesterday = new Date(today); yesterday.setUTCDate(today.getUTCDate() - 1); - sendReportEmail(yesterday, yesterday, "TrACreport Daily Report"); + sendReportEmail(yesterday, yesterday, "❄️ TrACreport Daily Report"); }); // Weekly Report @@ -67,7 +67,7 @@ cron.schedule('10 1 * * 1', () => { end.setUTCDate(today.getUTCDate() - 1); const start = new Date(end); start.setUTCDate(end.getUTCDate() - 6); - sendReportEmail(start, end, "TrACreport Weekly Report"); + sendReportEmail(start, end, "🛤️ TrACreport Weekly Report"); }) // Monthly Report @@ -75,7 +75,7 @@ cron.schedule('15 1 1 * *', () => { const today = new Date(); const end = new Date(Date.UTC(today.getUTCFullYear(), today.getUTCMonth(), 0)); // Last day of previous month const start = new Date(Date.UTC(end.getUTCFullYear(), end.getUTCMonth(), 1)); // First day of previous month - sendReportEmail(start, end, "TrACreport Monthly Report"); + sendReportEmail(start, end, "🚂 TrACreport Monthly Report"); }); console.log('📅 TrACreport schedulers are active'); \ No newline at end of file