When sending emails with python via SMTP_SSL() are the credentials and the email sent over the encrypted SSL session? I’m trying to learn python and I don’t want to send credentials in an insecure manner.
Example,
s= smtplib.SMTP_SSL(‘server’,465, context=)
s.login(username,pwd)
s.sendmail(From, To, message)
s.quit