035-add-poll-inbound-email-job.sql
1 -- Add Poll Inbound Email cron job 2 -- Polls Resend API for new inbound email replies every 5 minutes 3 4 INSERT OR IGNORE INTO cron_jobs ( 5 name, 6 task_key, 7 description, 8 handler_type, 9 handler_value, 10 interval_value, 11 interval_unit, 12 enabled 13 ) VALUES ( 14 '8.4 Poll Inbound Email', 15 'pollInboundEmails', 16 'Poll Resend API for new inbound email replies via Cloudflare Worker', 17 'function', 18 'pollInboundEmails', 19 5, 20 'minutes', 21 1 22 );