Hi,
One of our entity field contains coma separated values. I want to write a workflow, which is triggered when this field contains data.
Task is to split those values after coma, find out how many elements are there and send them as separate text in an email.
I saw this utility,https://github.com/jlattimer/CRM-String-Workflow-Utilities. But how can I get result back once I perform substring. Is there a list variable in Workflow where I can save those values and pass to my Send Email Action who then send these. E.g.
Field1 = 123,Test,567,Summer,BlaBla
Need to know how many elements are there e.g. 5 element and send an email like this.
You have 5 element in your field.
Element 1: 123
Element2: Test
Element3: 567
Element4: Summer
Element5: BlaBla
Can it be achieved in Workflow & via Email Template? If yes, please guide.