내 커뮤니티 업적 표시줄을 확대합니다.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.
해결됨

Consolidate a list of email addresses from many output bundles

Avatar

Level 10

Hi Fusion Community,

 

I have both Search and Iterator modules that produce many bundles.  Within each bundle a user email address is contained.  Bundles might have the same user email address or different ones. 

NickVa1_0-1738881330235.png

 

 

I'd like to produce a list of unique email addresses from these bundles.  Ideally the resultant module has one bundle with a list of unique email addresses.

 

Anyone know how I can do this?
Thanks!
Nick

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor

You can do the same trick here as in your other post, Nick. If you can get your source information into a single array, like if you use a custom api call instead of the native one, you can use the deduplicate(map({your array};emailAddr))

원본 게시물의 솔루션 보기

5 답변 개

Avatar

Level 2

Heya! So, to confirm, is the output result you're looking for just one big list of emails versus the separated bundles? So something like: email@email.com, email1@email.com, email2@email.com ?

Avatar

Level 10

Hey @Pan_Shahbazian - yup, ideally that would be great.

Avatar

Level 2

Gotcha -- If that's the case then, my initial thought here would be to use the Array Aggregator module and then deduplicate() to remove the duplicative values from the list.

Avatar

정확한 답변 작성자:
Community Advisor

You can do the same trick here as in your other post, Nick. If you can get your source information into a single array, like if you use a custom api call instead of the native one, you can use the deduplicate(map({your array};emailAddr))

Avatar

Level 10

Thanks, Chris.