but I wish to build up the possibility of having more than one email address from a multiselect of IDs (report_record.EmailCC). If I build up a string...
if ( report_record.EmailCC != null )
{
cc_contacts = "";
for each contact in report_record.EmailCC
{
contact_record = Contacts[ID == contact];
cc_contacts = contact_record.EmailAddress + ",";
}
cc_contacts = cc_contacts.removeLastOccurence(",");
}
It will send to the first address in the string. Is there a way to make this work??