How to send emails to multiple addresses in Workflow

Ray
New Member

I have a workflow rule that sends an email to customers when changes are made or new records are added to a table. In some cases my customers would like this message to be sent to more than one email address. Iโ€™ve tried to add comma separated addresses to the field but that does not work. Is there an easy workaround without making a table dedicated to emails for each customer?

Thank you
Ray

Solved Solved
0 5 618
1 ACCEPTED SOLUTION

Maybe try this then:

SPLIT( [CustomerName].[CustEmail] , โ€œ,โ€ )

View solution in original post

5 REPLIES 5

What exactly did you try? Hereโ€™s a screenshot showing 3 possible options. I havenโ€™t tested, but Iโ€™m pretty sure at least one should work.

Ray
New Member

I added the email addresses to the spreadsheet column and referenced it in the routine with [CustomerName].[CustEmail] in the To space.

Maybe try this then:

SPLIT( [CustomerName].[CustEmail] , โ€œ,โ€ )

That works - thanks Marc. Much appreciated

Be Safe
Ray

Perhaps I can rewrite the entry as such:

List([CustomerName].[CustEmail])

Top Labels in this Space