SmtpServerMaxSendPerSessionCount Property
Gets or sets the maximum number of e-mail messages which can be sent within a single connection with the server.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public int MaxSendPerSessionCount { get; set; }

Property Value

Type: Int32
Non-zero integer specifying the maximum number of e-mail messages which can be successfully submitted to the SMTP relay server within a single session. The default value is -1 (number of submissions per session is unlimited).
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionvalue is zero.
Remarks
To prevent abuse or spam, many mail servers limit the maximum number of e-mail messages accepted from a client during a single SMTP session. The developer can use MaxSendPerSessionCount property to restrict the number of e-mail submissions from MailBee to the SMTP relay server within a single session. When this number is exceeded, MailBee will disconnect from the server and either use another server (if SmtpServers collection contains other servers with the same or higher priority) or wait for PauseInterval milliseconds and then attempt to connect to the server again to send another portion of the messages.
See Also