How to send email to specific email address instead of CRM User/Enity ?
At standard operation email is being sent to EntityReference object corresponding to: User, Contact etc. Entity reference is being converted anyway into ActivityParty object. So, why not to use ActivityParty just from email address collection: private const string HtmlMimeType = @"Content-Type: text/html; charset=UTF-8"; private const string PlainTextMimeType = @"Content-Type: text/plain; charset=UTF-8"; public void CreateEmail(string title, string […]