Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Automatic Email sending to multiple users

Payvas
5 - Atom
 
I have data which looks like this  and it contain multiple email ids. I want to send individual email to each Submitter and which should contain the detail of that particualr advisor only

 

Acct numberSubmitter Email IDEntry DateValue DateCreator nameTransfer TypeAmount
99923949parul.ghs@gmail.com07-11-202308-11-2023Parul3000455
92939482paul.ghs@gmail.com08-11-202308-11-2023Paul4553000
92939481Ashish.ghs@gmail.com07-11-202310-11-2023Raj8772455

 

Output should look like below

 

Hi parul,

This is to inform that this is related to your department

 

Acct numberSubmitter Email IDEntry DateValue DateCreator nameTransfer TypeAmount
99923949parul.ghs@gmail.com07-11-202308-11-2023Parul3000455

 

Thanks,

Raj Kundra

 

2 REPLIES 2
alexnajm
17 - Castor
17 - Castor

Hi @Payvas,

 

Alteryx will send one email per row of data - so because Paul shows up in 2 rows, he'll get 2 emails because each email is unique, there will be three emails sent.

 

Here is a quick example I created to help out!

 

Based on how you've described it, you could use a Unique tool to take the first record based on the [Submitter Email ID] column. Or you could use a Sample tool to take the First N records with N=1, grouping by [Submitter Email ID]. This comment seems no longer relevant based on the data problem.

Payvas
5 - Atom

Great it worked

Labels