Everyone I am using vb6 to send out emails. I have come across a situation where i need to send it Secured via Jmail. How do i send a SSL email in Jmail?
Here is my current code, I need it to work with SSL as well.
Set objEmail = CreateObject("JMail.Message")
With objEmail
.From = gcFromAddress
.FromName = gcFromAddress
.AddRecipient cEmailAddress
.Subject = "" & mrsReportData("SubdivisionName").Value
End With
objEmail.Send (gcSMTPServerAddress & ":" & gcSMTPServerPort)