Blog

Scheduled Triggered Flow

Use Case:

Send the birthday wishes email notification to our valuable customers via scheduled triggered flow.

Prerequisites:

  1. Email Alert
  2. Email Template with Birthday wishes image attachment
  3. Set the default workflow user on process automation settings
  4. Set the default time zone on company information
  5. Custom formula field to find the birth date and month on the contact object

Step 1:

Configure the email template with valuable wishes content. With the help of the email template, we can configure the email alert with the email recipient field as follows.

Scheduled Triggered Flow
Scheduled Triggered Flow

Step 2:

Now, configure the flow with a start date, start time, and email alert as follows. (Scheduled triggered flow will be run on a daily basis).

Select the scheduled trigger flow component and select the start date, start time, and frequency.

Scheduled Triggered Flow
Scheduled Triggered Flow

Step 3:

Select the object, in this use case we select the contact object and set the following filter criteria.

  1. Email field not equal to empty
  2. Birthday date field not equal to empty
  3. Create a custom formula check box field to find the customer’s birthday date is found today

Following procedure to update the formula check box is true if the customer birthday is today

We can consider the date and month of the birth date and check with today’s date and month. The formula is as follows. Create the following formula on the contact object.

IF( AND(DAY( Birthdate )= DAY(TODAY()), MONTH(Birthdate) = MONTH(TODAY()) ), TRUE, FALSE )

Scheduled Triggered Flow
Scheduled Triggered Flow
Scheduled Triggered Flow

Conclusion:

Whenever the customer’s birthday date comes on today. The specific customers will be received the following email alerts.

Scheduled Triggered Flow