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 was archived by the owner on Nov 9, 2017. It is now read-only.
It would be great if this library would support SSL SMTP servers that run on port 465 (standard).
Here is an example of how it works: https://gist.github.com/chrisgillis/10888032
You need to
tls.Dialinstead ofsmtp.Dialand pass the resulting*Conntosmtp.NewClient(). This way, the ssl-only smtp server will respond.If you don't do this,
smtp.Dialwill respond with 'EOF' after a period of time and will not function.