Hello Community,
I wanted tor retrieve Email Attachment from the D365 in C# code activity.
I found some blogs but the code which is mentioned on this blog is having object name as: ActivityMimeAttachment
But I am not able to resolve it by any assembly.
Do anyone know how to make this work?
Error: ActivityMimeAttachment does not exist in current context.
private EntityCollection GetAttachments(IOrganizationService service, Guid id) { //Query for the attachments QueryExpression query = new QueryExpression() { EntityName = ActivityMimeAttachment.EntityLogicalName, ColumnSet = new ColumnSet("filesize", "filename"), Criteria = new FilterExpression { Conditions = { new ConditionExpression { AttributeName = "objectid", Operator = ConditionOperator.Equal, Values = { id } } } } }; return service.RetrieveMultiple(query); }
Thank you,
Milansinh Raj