Good afternoon,
We simply convert our .NET 1.1 web application to .NET 2.0. We have a big problem sending emails.
We use a distribution group (for example, WebDeveloppersGroup) to send emails to all developers in the company. These groups do not end with "@ something.com". These groups are created in Lotus Notes, and we cannot access all the individual emails contained in these groups.
In .NET 2.0, you cannot use email.To and must use: email.To.Add ("WebDeveloppersGroup");
At the same time, a System.Format message appears with the following message:
The specified string is not in the form required for the email address.
Does anyone know how to send an email group in 2.0?
source share