Bypass Google Chrome’s “Cannot connect to the real” error

In case you encounter the error below in Chrome, but you’re sure or okay with proceeding to the site, just type “proceed” while on the page and it should take you there.

Cannot connect to the real <site>…

Something is currently interfering with your secure connection to vcs.websys.tmcs.

Try to reload this page in a few minutes or after switching to a new network. If you have recently connected to a new Wi-Fi network, finish logging in before reloading.

If you were to visit vcs.websys.tmcs right now, you might share private information with an attacker. To protect your privacy, Chrome will not load the page until it can establish a secure connection to the real vcs.websys.tmcs.

Python: Send e-mail to multiple recipients using Gmail SMTP

Below is the method I used.

def SendEmail(content):
    gmailUser = ‘me’
    password = ‘password’
    recipients = [‘you1’,
                ‘you2’,
                ‘you3’
                ]
    msg = MIMEMultipart(‘alternative’)
    
    msg[‘Subject’] = ‘Subject’
    msg[‘From’] = gmailUser
    msg[‘To’] = ‘, ‘.join(recipients)
    
    content = MIMEText(html, ‘html’)
    msg.attach(content)
    
    mailServer = smtplib.SMTP(‘smtp.gmail.com’, 587)
    mailServer.ehlo()
    mailServer.starttls()
    mailServer.ehlo()
    mailServer.login(gmailUser, password)
    mailServer.sendmail(sender, recipients, msg.as_string())
    mailServer.close()