Hi, I use custom workflow to parse incoming emails. How can get email body in HTML? I used HtmlAgilityPack
HtmlWeb webDoc = new HtmlWeb();
HtmlDocument emailbody = new HtmlDocument();
emailbody = webDoc.Load(this.EmailReference);
where EmailReference for example
http://crmserver/OrgName/_controls/emailbody/msgBody.aspx?unblockContent=1&id={30CD5EDC-A061-E111-A6E8-0003FFEE03D6}&entityType=email
but it didn't work.
*This post is locked for comments
I have the same question (0)