SmtpServerTcpBufSize Property
Gets or sets the size of data chunk MailBee uses when sending e-mail data to the SMTP server.

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

Property Value

Type: Int32
The size of the data chunk in bytes. The default value is TcpBufSize.
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionvalue is less than 1.
Remarks
This property lets the developer control the size of e-mail chunks to be sent to the SMTP server. For instance, when sending large messages, you can set it to a larger value (e.g. 1MB rather than the default of 64KB).
See Also