My ASP.NET website sends emails throughout the day for various reasons.Each time an email is to be sent, an instance of a class I wrote is created on the web server. This class builds the MailMessage, creates an instance of SMTPClient, and calls the Send method.During periods of heavy load, SMTPExceptions are sporadically (no discernable pattern) thrown with the following message:"Service not available, closing transmission channel. The server response was: #4.x.2 Too many messages for this session"My SMTP Server admin has responded that our SMTP Server DOES have a limit on the number of messages that can be sent by a single session.The System.Net.Mail.SmtpClient class has no close or dispose method, so I have no control over the closing of my SMTP Session.
Version