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
You can use MNI to do that. Steps below:
1) Create a process model with Send email node
2) make it as a MNI.
3) Use tp!InstanceIndex to get the particular index name to send the email. for example: ="Dear "&cons!OB_WWX_TEAM[tp!instanceindex]. Gere OB_WWX_TEAM is my group.
Second Approach:
Create a for loop in process model by using XOR gateway. For this, you can create a process variable name index and increase it by 1 in every iteration and to get the name use index function.
I'd recommend you use a prior node to save an array of usernames (created by the groupMembers function) to a text array PV; that will allow you to more easily and confidently iterate over said PV to execute and control the MNI for your email node.