I have excel file i want to send the mail separate one by one in excel,and my attachement file(excel files) present in folder
Project1.xlsx (8.9 KB)
first check in excel and verify in directory that attachement present in direcorty or not and send the mail for particular person if not present then show the message the file is not present in directory and again same process for all attachment.How to handle this situtation
please help me give me example in workflow pattern
*Use read range activity and store data in DT.
*Use for each row activity to loop through each data.
*Use if activity and check file exist on the directory.
System.io.File.Exists(System.io.Path.Combine(folderPath,row("Excel Attachment").ToString))
*Based on the attachment availability send mail to the user.
Hope this helps.
1 Like