SMTPSecureSocket.Messages.AddRow() how many Rows available?

When using SMTPSecureSocket.Messages.AddRow(), how do you determine the limit of the # of messages that you can stuff into the Messages array?

I’m currently putting a single message in, then sending, but it’d be nice to know how many messages can get queued before having to use ‘send’ to purge. Thanks!

There is no limit in the class directly.

Your provider may have limits like 100 emails per socket

Thanks Christian - good to consider the other factors.

A follow-on question… Is it still best practice to destroy/replace a socket once you use it, or is it okay to recycle them?