TLS in VB.net

foregp

Newcomer
Joined
Dec 30, 2011
Messages
1
I use following code to send the email.

Dim smtpCli As New SmtpClient
.
.
.
.
smtpCli.EnableSsl = True
smtpCli.Send(mailMsg)


Now I want to use TLS while sending the email. How to do it in VB.NET
 
Back
Top