Appian Community and Appian Academy are being upgraded. From July 24–August 3, the Appian Community will be in read-only mode. During this time, the site will be read-only and user registration will be disabled. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
I'm trying to send an email to group members, I sent it successfully, but how to call the recipients one by one in the body of the mail
e.g.
Dear ABC, XYZ, PQR
I want to show like
Dear ABC
Discussion posts and replies are publicly visible
For this, you can use the join array function after "dear". Something like concat("Dear ",joinarray(pv!users,";"))
concat("Dear ",joinarray(pv!users,";"))
I tried It is showing me like that in one email, I want to three email using one name only
Dear ABC; XYZ; PQR
You mean you want an email for individual name? If yes, then you can run a loop in the process model using a counter variable. Set the counter to 1 when the PM starts and check the value of it in an XOR. It should be less than or equal to the count of pv!users. Then you can use concat("Dear "pv!users[pv!counter])