function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Himanshu Patel 55Himanshu Patel 55 

Sending Email notification on 1st of every month

Hi, 

I want to send notification to few contacts on 1st of every month without writing Schedulable Job. I have checked Scheduled Flow but it doesn't have option for sending every month. Is there any other solution available through point and click. 
Abdul KhatriAbdul Khatri
Hi Himanshu,

You can still use Scheduled Flow like this.
  • Set the Scheduled flow Daily around 12:00 AM (Please do a test to manage the Start Date/Time as there is always an offset)
  • Create a Formula Boolean Field with the below Formula
DATE(YEAR(TODAY()), MONTH(TODAY()),1) = TODAY()
  • Use the Decision box to check if it is the First Day of the Month,
    • if Yes, perform your logic
    • if No, Ends
Here is with screenshot

User-added image

User-added image
User-added image

Is this way your flow will run daily but will only execute your logic when it is the First Day of the Month?

Let me know if this helps

Please do mark this best if helped

Regards,
Abdul Aziz Khatri
Abdul KhatriAbdul Khatri
Hi,

Is my solution helped you?

Regards
Abdul Aziz Khatri
Himanshu Patel 55Himanshu Patel 55
Thank you. Let me try this solution and come back to you.  Appreciate it 
Abdul KhatriAbdul Khatri
Hi Himanshu,

Did you give a try?

Regards,
Abdul Aziz Khatri