Business Hours Alerts

Is there a way only send email alerts during work hours?

Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around

The best way is to use Jesse Vincent’s Business::Hours module to set up
a business hours schedule, then use the methods (like first_after) to
quickly determine whether the current time is in the business hours
schedule.

But it’s also not hard to roll up your own using POSIX::localtime() and
POSIX::strftime().

Rick R.