Send Outlook Through Excel Input

I have excel file i want to send the mail separate one by one with row data in excel.
and how to attach the excel path in excel input through UiPath.
Project1.xlsx (8.9 KB)

Hi @Himanshu_Pratap_Rana ,

-Read the excel and store it in data table
-Use for each row activity to loop through the datatable
-Use send email activity with the attachment, i.e row(“Excel Attachment”).tostring

Regards,

Hey @Himanshu_Pratap_Rana ,
Please check this below Screenshot

image

In the properties pannel you can add CC
image

in the Attachment section you can add the following the the file path.

Project1.zip (1.9 KB)

Regards,

Facing one issue my path attachment present in directory and before sending to check with excel the bu 200 file present in directory if path exist send to the particular person if not present give a another message through mail

Attachment Present in folder path

Hey @Himanshu_Pratap_Rana ,
Then you can use Path exist activity.

Note : You can mention the filepath(directory) inside the path exist activity

Regards,