How to add 2 attachment coming from data extraction activity in Recurring delivery activity
Hi all,
need one help based on your old post
I need to add 2 attachment coming from data extraction activity in Recurring delivery activit

- Data extraction activity1:filetest.csv and Data extraction activity2:filetest.csv
JS activity:
instance.vars.filetest = vars.filename;
instance.vars.filetest = vars.filename1;
cOde in open tab of recurring delivery:
delivery.attachment.add(
<attachment compressMode="print" filterActive="false" label="my label"
nameScriptActive="false" type="normal" upload="false">
<name>{instance.vars.filetest,instance.vars.filetest1}</name>
</attachment>)
delivery.hasAttachments = true
Reference
however with below workflow I am able to get 1 attachment in delivery as I am sending only 1 file here

can un please help me here how can i send 2 attachments via one delivery
how can i modify the code and where