Email with list of files downloaded.

Post any question you may have in regards to GoAnywhere Director and let our talented support staff and other users assist you.
3 posts Page 1 of 1

nishantmathur

Posts: 9
Joined: Thu May 15, 2014 10:47 am

Post by nishantmathur » Mon Jul 21, 2014 9:25 am
Hello all,

I am having issues creating a email body with list of list downloaded.. I created a variable to store list of files... but as you can see they are separated by ' ; '. I would like to have a new line (\n) between each file name entry.

${Concat(emailFileList, FileInfo(String(file)):name, ' ; ' )}

Current output :

ABC.txt ; CDE.txt ; efg.csv

Desired output :

ABC.txt ,
CDE.txt ,
efg.csv


Thanks in advance for your help

Support_Rick

Support Specialist
Posts: 590
Joined: Tue Jul 17, 2012 2:12 pm
Location: Phoenix, AZ

Post by Support_Rick » Mon Jul 21, 2014 10:07 am
Change your Concat function to this:

${ Concat( emailFileList, FileInfo(String(file)):name, system.carriageReturn) }
Rick Elliott
Lead Solutions Consultant
(402) 944.4242
(800) 949-4696

nishantmathur

Posts: 9
Joined: Thu May 15, 2014 10:47 am

Post by nishantmathur » Mon Jul 21, 2014 11:03 am
That worked.. Thanks Rick !!
3 posts Page 1 of 1