Control the message rate (messages sent per minute) #1922
-
We have an application using MailKit to consume our Exchange server's Client Frontend connector, which has the MessageRateLimit set to 30. The client continues to exceed this limit and we don't want to increase our message rate limit on the server. Can anyone please advise if there is an easy way in MailKit itself to control the message rate so that it won't even ever try to send more than 30 messages in a single minute? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There's nothing like that in MailKit. You'll have to implement that in your code that uses SmtpClient to send messages. |
Beta Was this translation helpful? Give feedback.
There's nothing like that in MailKit. You'll have to implement that in your code that uses SmtpClient to send messages.