We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4745eb commit 7bebdd5Copy full SHA for 7bebdd5
apps/app/src/jobs/tasks/task/weekly-task-reminder.ts
@@ -70,6 +70,12 @@ export const weeklyTaskReminder = schedules.task({
70
continue;
71
}
72
73
+ // Skip internal trycomp.ai emails
74
+ if (member.user.email.includes('@trycomp.ai')) {
75
+ logger.info(`Skipping internal email: ${member.user.email}`);
76
+ continue;
77
+ }
78
+
79
emailPayloads.push({
80
payload: {
81
email: member.user.email,
0 commit comments