You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
Well, I had exactly this problem a few days ago. "unecrypted connection". This error is linked with the smtp server itself. Smtp server is telling you : "i want you to authentify on a secured port".
It appears that the sysadmin changed the smtp configuration and the port i used ceased to be a valid one.
remove the "d.SSL = false"
Change port from 25 to 465. (port 25 usually is usually for free, non secured, non authenticated smtp).
if not working try port 587.
if not working, your smtp port is non standard, ask the tom.com sysadmin for it.
I use tom mail, go 1.10.2
host: smtp.tom.com
port: 25
d := mail.NewDialer(host, port, from, password)
d.SSL = false
I get "unencrypted connection", I can not send email use this library when use tom mail.
The text was updated successfully, but these errors were encountered: