I am using a e-mail trigger event to pick up an e-mail from a user. This user i

I am using a e-mail trigger event to pick up an e-mail from a user. This user is also an Appian user. How can I match this e-mail to this specific Appian user within a process?

Thanks
Bjarte Karlsen ...

OriginalPostID-100927

OriginalPostID-100927

  Discussion posts and replies are publicly visible

Parents
  • Assuming all your users are in a group (such as an All Users group or a smaller group), you could run a statement in a script task like wherecontains(ri!emailFromTrigger,apply(user(_,"email"),getdistinctusers(topeople(cons!AllUsersGroup))).

    This would return the index, so then a statement like index(getdistinctusers(topeople(cons!AllUsersGroup)),IndexFromAbove) would return the user
Reply
  • Assuming all your users are in a group (such as an All Users group or a smaller group), you could run a statement in a script task like wherecontains(ri!emailFromTrigger,apply(user(_,"email"),getdistinctusers(topeople(cons!AllUsersGroup))).

    This would return the index, so then a statement like index(getdistinctusers(topeople(cons!AllUsersGroup)),IndexFromAbove) would return the user
Children
No Data