Hi All,
I have seen numerous posts on answers that point me to either the SDK, Scripting or other means of creating and manipulating entries - but none seem to really tell me the simplest way to attack my problem.
In essence it is very simple, since i have already completed an email report that calculates a number of tokens and two lists of documents and displays them in an email with simple HTML formatting for auditing purposes.
Simple example:
(1) ID: 12345, Name: FileA MyRepository\Folder1\Subfolder1\FileA (2) ID: 78987, Name: FileB MyRepository\Folder2\Subfolder3\FileB
etc...
The Token composition is by doing the modification of a created token and modifying it with an append "for each entry" in a search loop.
Consequently I end up with a nicely formatted email that has a list of the files.
By using colour and bold, underline etc I have made it reasonably easy to parse but it cannot be sorted or compared one day to the next as it changes and the best way to do this would be to attach a csv text file to the email with the same token data populated with comma separated formatting.
eg in email:
(1) ID: 12345, Name: FileA
MyRepository\Folder1\Subfolder1\FileA
(2) ID: 78987, Name: FileB
MyRepository\Folder2\Subfolder3\FileB
...and in attached csv/text file:
1,12345,FileA,MyRepository\Folder1\Subfolder1\FileA 2,78987,FileB,MyRepository\Folder2\Subfolder3\FileB
As I understand, it this would probably have to be done with a script in the workflow, is that right?
I am not able to do this with Visual Basic etc as it exceeds my expertise.
I would have thought it might be possible to create an entry in a special folder of the repository and write the list to that and then attach that entry to the email but I can't seem to do that either...
Any pointers guys please?
Best regards,
Will