How to read outlook mail subject and save in excel

Hi @neerajmca5,

Use Get Outlook Mail Message activity to get the all the mails
Properties Top“-1” to get all the mail messages.
if you want only unread mail messages check the OnlyUnReadMessages
create datatable using Build datatable ->Column as “Subject”
then using for each activity loop through the mail.

strSubject=item.Subject.Tostring
using add data row activity add the subject value.(strSubject)

after loop finish use Write range activity to write the Subject in the excel file.
For Reference

Regards,
Arivu