Hi,
We have contact entity with two email fields available per contact. How to send single email by appending multiple email address at time. Using below code was able to get only one email id field.
private void SendEmail(Guid accountToGuid)
{
Entity toParty = new Entity("activityparty");
toParty["partyid"] = new EntityReference("contact", accountToGuid);
}
*This post is locked for comments