diff --git a/apps/web/pages/api/cron/bookingReminder.ts b/apps/web/pages/api/cron/bookingReminder.ts index 4c99aded04..ab511b5a42 100644 --- a/apps/web/pages/api/cron/bookingReminder.ts +++ b/apps/web/pages/api/cron/bookingReminder.ts @@ -31,6 +31,17 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse) }, // Only send reminders if the event hasn't finished endTime: { gte: new Date() }, + OR: [ + // no payment required + { + payment: { none: {} }, + }, + // paid but awaiting approval + { + payment: { some: {} }, + paid: true, + }, + ], }, select: { ...bookingMinimalSelect,