Send notifications every specific day automatically

Hello frappe family

How I can send notifications every specific day automatically
example:
sent notification on the 25th date of every month

  1. Edit your app’s `‘hooks.py’ file.
  2. Find the Python dictionary named `‘scheduler_events’
  3. Add a cron expression. In your case, the 25th date of each month = 0 0 25 * *
  4. Include the path to the Python function that will send the notification (you will probably have to write one)

Example:

# hooks.py

scheduler_events = {
  "cron": {
    "0 0 25 * *": [
      "your_app.your_module.path_to_your_function"
    ]
  }
}