Skip to main content
Community site session details

Community site session details

Session Id :
Customer experience | Sales, Customer Insights,...
Answered

What is the assembly name to use ActivityMimeAttachment Object ? - Retrieve Email Attachments

(0) ShareShare
ReportReport
Posted on by 230

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

https://social.microsoft.com/Forums/en-US/2c70e745-bd41-4b27-94e6-44685519ed49/custom-workflow-to-read-xml-attachment-crm-2011-online?forum=crm

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 

  • Milansinh Raj Profile Picture
    230 on at
    RE: What is the assembly name to use ActivityMimeAttachment Object ? - Retrieve Email Attachments

    Thanks a lot @Bipin kumar

  • Verified answer
    Bipin D365 Profile Picture
    28,981 Moderator on at
    RE: What is the assembly name to use ActivityMimeAttachment Object ? - Retrieve Email Attachments

    Hi,

    There is no such assembly. This code is related to Early bound class which can be generate using SDK tool.

    docs.microsoft.com/.../create-early-bound-entity-classes-code-generation-tool

    You can replace below line

    EntityName = ActivityMimeAttachment.EntityLogicalName

    with

    EntityName = "activitymimeattachment"

    and it should work as expected.

    Please mark my answer verified if i were helpful

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

News and Announcements

Now Available: 2025 Release Wave 2

Quick Links

Ramesh Kumar – Community Spotlight

We are honored to recognize Ramesh Kumar as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Customer experience | Sales, Customer Insights, CRM

#1
Holly Huffman Profile Picture

Holly Huffman 103

#2
Muhammad Shahzad Shafique Profile Picture

Muhammad Shahzad Sh... 96 Most Valuable Professional

#3
Gerardo Rentería García Profile Picture

Gerardo Rentería Ga... 51 Most Valuable Professional

Product updates

Dynamics 365 release plans