without knowing much about your setup, at a high level: have `cron` calculate and materialize the wo
without knowing much about your setup, at a high level: have
cron calculate and materialize the work for the day, publish at least one queue msg when done, then handle/send those reports in the queue handler. You'll need to decide whether to keep all the state in the messages themselves, or use storage (like in a DO) - so you don't send the same email twice (queues can sometimes send you the same message twice)
