Workflow with If Else ?

Hello, is this a possible option.

the workflow we want is such:

Trigger: account modified date is last 5 minutes
If account type is type1
then send email A
Else if account type Type2
then send email B
else
send email C

can this be done through a single workflow?

If not is there a chain of workflows you can think of which would be able to work this functionality?

You could try three different workflows with each of your conditions:

  1. account type = type 1
  2. account type = type 2
  3. (account type not equal type 1 ) and (account type not equal type 2)
1 Like