How to Configure the 'Send Alert On' Field for a Specific Date?

Screenshot from 2024-12-19 15-55-37

I want to send a notification on 01-02-2025, so what should I select in the Send Alert On field?

@ejaaz
Please help !

You can do customization to add more options and add logic as required.

If you want to send reminders on the 1st and 20th of every month, you can use Frappe’s cron job.

https://docs.frappe.io/framework/user/en/api/background_jobs#scheduler-events

Code to send mail

This tool can help you to set proper detail in cron

1 Like

@PRaful_9898
what does “01-02-2025” mean
is it stored in a field in the doctype or something else

ys its a date field. stored date (01-02-2025) in that field .i need to send the reminder (email) on that date so i set like this =====>

Here i select Days After and set 0 . so the reminder (email) will send on that day (01-02-2025)

Else you can use custom and in the condition

doc.due_date==nowdate()