Email server does not support secure connection [FIXED BY EXPERTS]

Reading time icon 3 min. read


Readers help support Windows Report. We may get a commission if you buy through our links. Tooltip Icon

Read our disclosure page to find out how can you help Windows Report sustain the editorial team Read more

email server doesn't support secure connection

A large number of users have reported having an issue when trying to use their written script to send emails through Gmail.

They report that the issue arises suddenly after using the same script for a long time:

This issue can be extremely annoying, especially if you need the script to run properly for a company or multiple users. This error message is caused by one of the following issues:

  • the connection settings are incorrect (wrong port specified)
  • the credentials provided are incorrect (username and password)

For these reasons in this article, we will explore some of the best methods to solve this problem, and be able to send emails using your scrip again. Please follow the steps closely to avoid any unnecessary issues.

What to do if Email server doesn’t support secure connection?

1. Change ‘client.port’ value

  1. If you find yourself in the same situation as the user mentioned above, you will simply need to stop using port 25, and change it to port 465 or 587.
  2. Using port 587 is a security requirement for outgoing mail (SMTP) servers for Gmail.  
  3. This method should solve your issue, but if the issue persists, follow the next method.

2. Change the value of SmtpServer.EnableSsl


The code of your script should look like this :

 Dim client As New Net.Mail.SmtpClient("smtp.gmail.com")
        client.Port = 587
        client.EnableSsl = True
        client.UseDefaultCredentials = False
        client.Credentials = loginInfo
        client.Send(mm)

Change the value of SmtpServer.EnableSsl from ‘true’ to ‘false’.

 SmtpServer.EnableSsl = true;

turns into:

SmtpServer.EnableSsl = false;

After changing this value, check to see if the issue persists. If it does, please follow the next method.

3. Change settings of your Gmail app

  1. In order to access the link provided in the next step, you will need to make sure you’re logged into your Gmail account
  2. Visit this link and activate the option ‘Access for less secure apps’.Less secure app access Gmail - email server doesn't support secure connection
  3. Retry running your script to check if the issue is resolved.

4. Use a third-party email client service

Alternatively, you can send the script by connecting your Gmail account to a third-party email client program. Software like Mailbird can fully sync and configure with Gmail, allowing you to manage your contacts and messages in one inbox.

Mailbird can connect to Facebook, Google Calendar, WhatsApp, Twitter, Dropbox, Evernote, Google Docs, Slack, and other day-by-day apps.

Moreover, the program will detect the server settings automatically, so you won’t have to insert them manually.

In addition to basic email client functionality, it offers support for IMAP, POP3 servers, email search, filtering, and more.

Mailbird allows you to snooze incoming emails and includes a fast reading of messages as well as a quick preview of attachments for text files and graphics.

Follow these steps to connect the two accounts:

  1. Download and install Mailbird for desktop
  2. Go to Settings and select Add account from the Accounts tab
  3. Enter your name and Gmail address
  4. Click Allow to load your Google emails and contacts into Mailbird

In this article, we explored some of the best methods to solve the issue caused by an error in the script for sending emails through Gmail.

Please feel free to let us know if this guide helped you solve your issue, by using the comment section below.

More about the topics: windows 10 fix