All right, you got me interested so I had to go look at the code lol.
It looks like it's pretty easy to add retrieving the HTMLBody from the Mail Item.
Take a look in the object 'MS Outlook Email VBO' then in the page 'Internal_Get Items' and then in the code stage 'Get Items'. You can edit this code stage to output the HTMLBody. I suspect someone else has already created an edited version of this to output the HTMLBody. I'll facepalm if that's the case. Anyway, you only need to make 2 changes in the code stage:
First code stage change. Find the line in the code that is exactly like this:
dataTable.Columns.Add("Body", Type.GetType("System.String"))
and then add a line below it like this:
dataTable.Columns.Add("HTMLBody", Type.GetType("System.String"))
Second code stage change. Find the line in the code that is exactly like this:
row("Body") = item.Body
and then add a line below it like this:
row("HTMLBody") = item.HTMLBody
Third change but outside the code stage:
Open the Collection 'Items' in the page 'Internal_Get Items' and add a field called 'HTMLBody' with a datatype of Text.
I tested it briefly and it works for me. Let me know how it goes. And thanks for bringing this up! I didn't expect it to be so easy.
------------------------------
Dave Morris
3Ci @ Southern Company
Atlanta, GA
------------------------------
Dave Morris, 3Ci at Southern Company