Blue Prism hangs when calling "List Mails Within DateTimes" of BluePrism - MapiEx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-12-18 06:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
22-02-19 01:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
22-02-19 08:44 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-02-20 10:53 AM
------------------------------
Praveen Chinthaginjala
Senior Technical Architect
HCL Technologies
Europe/Amsterdam
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-02-20 01:09 PM
------------------------------
Dave Morris
3Ci @ Southern Company
Atlanta, GA
------------------------------
Dave Morris, 3Ci at Southern Company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-02-20 01:29 PM
------------------------------
Praveen Chinthaginjala
Senior Technical Architect
HCL Technologies
Europe/Amsterdam
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-02-20 01:47 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-02-20 02:42 PM
------------------------------
Ami Barrett
Sr Product Consultant
Blue Prism
Plano, TX
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-02-20 02:50 PM
------------------------------
Dave Morris
3Ci @ Southern Company
Atlanta, GA
------------------------------
Dave Morris, 3Ci at Southern Company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-02-20 02:53 PM
------------------------------
Ami Barrett
Sr Product Consultant
Blue Prism
Plano, TX
------------------------------
