I'm trying to add new connections on the fly using the API.
Here's a snippet of the code:
server.Connections.Add(new ConnectionClass
{
CodePage = 1252
ProtocolType = ConnectionClass.ProtocolT.SMTP,
Name = "Custom Email Connection",
AuthenticationType = ConnectionClass.AuthenticationT.Anonymous,
Host = Encoding.GetEncoding(1252).GetBytes("smtp.connection.com")
});
As soon as this code is executed, my VisualCron client crashes if I try to list the available connections.
I have attached the error log from the crash to this topic
Edited by moderator
2017-06-09T08:35:03Z
|
Reason: Not specified