Hello Experts,
I Have an email record (GUID), I am trying to retrieve the email sender from the email activity. Retrieving the email sender sender could either be in form of the email address or GUID if its an existing contact.
I can retrieve other attributes like Subject, regarding ID , and duration, However, when retrieving the email sender nothing is returned.
Guid NewId = new Guid("c3f857cb-caff-ec11-82e4-000d3ade27bd");
// Try to retrieve the record from the current entity
Entity email = service.Retrieve("email", NewId, new ColumnSet(true));
string mailSubject = email.Attributes["subject"].ToString();
var senderId = ((EntityReference)email.Attributes["from"]).Id;
Console.WriteLine(senderId);
Console.Read();
Please any help will be appreciated!