Ok so google have (I’ve just found out) said they will drop the insecure connection from end of September 2024.
And I use it! You know what it’s like if it ain’t broke don’t fix it.
But I’m being proactive for once as email sending from my apps are crucial for me to know what’s going on.
So question is: old code
’ Connect to Gmail
MailSocket.Address = “smtp.gmail.com”
MailSocket.Port = 465
MailSocket.SSLConnectionType = SSLSocket.SSLConnectionTypes.TLSv1
MailSocket.SMTPConnectionMode = SMTPSecureSocket.SMTPConnectionTypes.SSLTLS
MailSocket.SSLEnabled = True
MailSocket.Username = “YourGmailUsername”
MailSocket.Password = “YourGmailPassword”
As far as I understand won’t connect anymore so what else is there to use!?
My code is invisible from the customer (they are aware it sends out emails) and I dont want to install an email app on the machine so where do I (WE) go from here
Any ideas or am I missing something!!! (Would not put it past me this week has been hell!!!)
Richard
10 posts - 5 participants