How to send emails every week

System Information
  • Strapi Version:
  • Operating System:
  • Database:
  • Node Version:
  • NPM Version:
  • Yarn Version:

Hello everyone!! Does anyone knows how can I send emails every week (eg: send emails every tuesday) for every person that is in my database with a specific flag? I have reserached a lot about it, but Im kind noob in back-end stuff. Hope anyone can help. Thanks in advance :slight_smile:

Hi there @agraluca
I think you can use cron.js and enable it.
Then create a script that executes

0 0 * * TUE

This would be At 00:00 on Tuesday.
Then execute the sendemail to that person etc. You could always create a filter find what you want then send it etc.