Here is my code:
SmtpClient client = new SmtpClient(); client.UseDefaultCredentials = true; using (client as IDisposable) { foreach (MailAddress addr in Addresses) { if (addr != null) { try { message.To.Clear(); message.To.Add(addr); client.Send(message); } catch (Exception ex) { Log(ex); } i++; } } }
every 100 seconds, I log a message stating that
The operation is completed.
Is this setting on the client side or on the actual mail server?
source share