I've created a custom workflow that sends emails to certain Contact Entities. I want the From
field to be the "support" user (and email) that we've created in CRM, so that any replies would go to the correct place.
However, I don't know how to get that to work. Here's what I have:
var fromParty = new ActivityParty
{
PartyId = new EntityReference("systemuser", new Guid("what goes here?")),
};
How do I get the Guid of the User that I want to send the emails as?
Is this even the correct way to go about what I'm trying to do?