System.Net.Mail.SmtpClient and limits on the number of BCC addresses

C

Claire

Hi
I'm using BCC to send mass emails to members of a club.

System.Net.Mail.MailMessage Message =
new System.Net.Mail.MailMessage(Sender, Recipient, Subject, Body);
for(int cnt = 0; cnt < BCCList.Count;cnt++)
Message.Bcc.Add(new MailAddress(BCCList[cnt]));

Is there a recommended limit to the max number of BCC entries I can add to a
mail message?
I notice in my IIS SMTP server that max values can be set for certain
things.

thank you :)
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,

Try and error my friend :)

Also post this question in the IIS group. (or the exchange) Remember that
IIS use a smart host to deliver the emails.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top