send email to multiple user

0
Hi, Does anyone know how to send email to multiple users at one time? I have already followed the steps to put semicolons to separate the user email, but it still retrieved the user email. Meaning if there are 5 users to receive the email, it only put cc to the last user email. Please refer below image for my microflow:    
asked
2 answers
0

Hello Muhammad Ikhwan Afiq bin Azmir,

 

The reason it put CC only to the last user was because you are replacing the list with only the current Iterator Value in your change variable activity.

Can you add the below code to your change variable (CCListName) activity and let us know if that worked?

 

Sending the typed code as reference below

 

if

trim($CCListName) != ‘’

then

$CCListName + ‘;’ + $IteratorAccountPIC/Email

else $IteratorAccountPIC/Email

answered
0

HI Muhammad,
This forum post will give you more context on what you need.

https://forum.mendix.com/link/questions/114905

answered