We plan to use Amazon's Simple Email Service (SES) to deliver our e-mail. It's working fine when I use the Microsoft System.Net.Mail library, but not when I use the Limilabs Mail.dll.
This code works fine:
Dim MailServer As New Smtp()
MailServer.ConnectSSL(MailServerName)
But when I get to these statements:
Dim Email As IMail = Message.Create()
MailServer.SendMessage(Email)
I get the following exception:
"Tried to read a line. No data received. Please make sure that antivirus and firewall software are disabled or configured correctly."
My Amazon SES account is configured to use TLS on ports 25, 465 or 587.
What am I doing wrong?