EDIT: This question is pointless, except as an exercise in red herrings. The issue turned out to be a combination of my idiocy (NO ONE was being emailed as the hos
You could try putting the e-mails into a comma-delimited string ("person1@domain.com, person2@domain.com"
):
C#:
ArrayList arEmails = new ArrayList();
arEmails.Add("person1@domain.com");
arEmails.Add("person2@domain.com");
string strEmails = string.Join(", ", arEmails);
VB.NET if you're interested:
Dim arEmails As New ArrayList
arEmails.Add("person1@domain.com")
arEmails.Add("person2@domain.com")
Dim strEmails As String = String.Join(", ", arEmails)