anybody knows that?
like email body, subject, to , from
Build a Datatable with Build Datatable activity, Define columns as EmailBody, Subject etc.,
Use Get outlook Message activity to read the outlook mailbox
Use For Each activity->change Typeargument to System.Mail.MailMessage
Inside foreach you can a Assign activity as
Dt.Row(index).Item(“EmailBody”) = item.body.ToString
index will be the For Each property index variable
Hope this may help you
Thanks
2 Likes
Hi ,
If u want to get table data from mail then you can try below step
1.Save mail using save mail msg activity in eml format.
2.use start process activity … It will open email in browser
3. Use extract datatable to extract table data.
I tried this approach long time ago. May be it will help you
1 Like