On the drop down methods available for SmtpClient only includes EnableSsl but not tls.
What are the steps to enable tls on visio studio c#.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
TLS is just another name for SSL past v3; absent a version number, they mean basically the same thing. Note that the built-in SMTP Client only supports
STARTTLSstyle secured connections, and not SMTPS (the one that uses its own separate port). If you need SMTPS support you’ll need to go find a third-party SMTP client or roll your own.