In 1.1 we were able to send to an email group using :
MailMessage em = new MailMessage();
em.To = "Group";
The group name does not contain a @ character, so they are like: +EM FAA-xxx
In .NET 2.0 you cannot use em.To =
and are required to use: email.To.Add("Group");
This causes a System.Format exception to occur with the following message:
The specified string is not in the form required for an e-mail address.
Does anyone know how to send to an email group in 2.0 ?