You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now a job post would be live on the site forever. This feature would automatically make it inactive after 30 days. The owner can come to the site, or click a link in the email, to extend the "active" time another 30 days.
The text was updated successfully, but these errors were encountered:
cannikin
changed the title
Notify a job post owner that their post is about to become inactive after 30 days
Notify a job post owner that their post is about to become inactive after X days
May 3, 2022
Thanks! We've got an email lib in there already, and it's sending notices when you create a job or job profile. You'll see there's an email service that sends them. We'd probably want a job that runs every 24 hours to check if any jobs are going to expire in the next 3 days or something and send out a notification. Netlify has some kind of scheduled job runner now, I figured we'd use that.
There's no concept of expiration n the database currently, so I'd probably add an expiresAt column and set it to 30 days in the future when the job is created. If you follow a link in the email to make the job live for another 30 days, it just resets that expiresAt value to another 30 days in the future.
Right now a job post would be live on the site forever. This feature would automatically make it inactive after 30 days. The owner can come to the site, or click a link in the email, to extend the "active" time another 30 days.
The text was updated successfully, but these errors were encountered: