Reputation: 1
How to add multiple email to object trigger in visual builder cloud studio?
I can add single recipient or single variable. I need to add multiple email in a same email, so that i can see to whom are all the email is sending.
Upvotes: -1
Views: 26
Reputation: 3721
You should be able to use comma separated list of email addresses in the recipients field. Also if you switch to code view you'll see where to update this: eMailNotification_1: { def variables = [:];
Email.send('[email protected], [email protected]', "[email protected]", "undefined", variables); }; So you can use a groovy script to construct the emails.
Upvotes: 0